-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add migration file for Secure File field.
- Loading branch information
1 parent
4fe85c3
commit 1b78e37
Showing
5 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
api/migrations/0215_alter_generaldocument_document_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Generated by Django 4.2.16 on 2024-10-17 06:11 | ||
|
||
import api.models | ||
from django.db import migrations | ||
import main.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0214_alter_profile_limit_access_to_guest'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='generaldocument', | ||
name='document', | ||
field=main.fields.SecureFileField(blank=True, null=True, upload_to=api.models.general_document_path, verbose_name='document'), | ||
), | ||
migrations.AlterField( | ||
model_name='situationreport', | ||
name='document', | ||
field=main.fields.SecureFileField(blank=True, null=True, upload_to=api.models.sitrep_document_path, verbose_name='document'), | ||
), | ||
] |
21 changes: 21 additions & 0 deletions
21
country_plan/migrations/0008_alter_countryplan_internal_plan_file.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Generated by Django 4.2.16 on 2024-10-17 06:11 | ||
|
||
import country_plan.models | ||
import django.core.validators | ||
from django.db import migrations | ||
import main.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('country_plan', '0007_alter_membershipcoordination_sector_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='countryplan', | ||
name='internal_plan_file', | ||
field=main.fields.SecureFileField(blank=True, null=True, upload_to=country_plan.models.pdf_upload_to, validators=[django.core.validators.FileExtensionValidator(['pdf'])], verbose_name='Internal Plan'), | ||
), | ||
] |
34 changes: 34 additions & 0 deletions
34
dref/migrations/0075_alter_dref_budget_file_preview_alter_dreffile_file_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Generated by Django 4.2.16 on 2024-10-17 06:11 | ||
|
||
from django.db import migrations | ||
import main.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dref', '0074_auto_20240129_0909'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='dref', | ||
name='budget_file_preview', | ||
field=main.fields.SecureFileField(blank=True, null=True, upload_to='dref/images/', verbose_name='budget file preview'), | ||
), | ||
migrations.AlterField( | ||
model_name='dreffile', | ||
name='file', | ||
field=main.fields.SecureFileField(upload_to='dref/images/', verbose_name='file'), | ||
), | ||
migrations.AlterField( | ||
model_name='dreffinalreport', | ||
name='financial_report_preview', | ||
field=main.fields.SecureFileField(blank=True, null=True, upload_to='dref/images/', verbose_name='financial preview'), | ||
), | ||
migrations.AlterField( | ||
model_name='drefoperationalupdate', | ||
name='budget_file_preview', | ||
field=main.fields.SecureFileField(blank=True, null=True, upload_to='dref-op-update/images/', verbose_name='budget file preview'), | ||
), | ||
] |
24 changes: 24 additions & 0 deletions
24
flash_update/migrations/0013_alter_flashgraphicmap_file_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 4.2.16 on 2024-10-17 06:11 | ||
|
||
from django.db import migrations | ||
import main.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('flash_update', '0012_auto_20230410_0720'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='flashgraphicmap', | ||
name='file', | ||
field=main.fields.SecureFileField(upload_to='flash_update/images', verbose_name='file'), | ||
), | ||
migrations.AlterField( | ||
model_name='flashupdate', | ||
name='extracted_file', | ||
field=main.fields.SecureFileField(blank=True, null=True, upload_to='flash_update/pdf/', verbose_name='extracted file'), | ||
), | ||
] |
24 changes: 24 additions & 0 deletions
24
per/migrations/0121_alter_perdocumentupload_file_alter_perfile_file.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 4.2.16 on 2024-10-17 06:11 | ||
|
||
from django.db import migrations | ||
import main.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('per', '0120_alter_formcomponent_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='perdocumentupload', | ||
name='file', | ||
field=main.fields.SecureFileField(upload_to='per/documents/', verbose_name='file'), | ||
), | ||
migrations.AlterField( | ||
model_name='perfile', | ||
name='file', | ||
field=main.fields.SecureFileField(upload_to='per/images/', verbose_name='file'), | ||
), | ||
] |