Skip to content

Commit

Permalink
Add migration file for Secure File field.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rup-Narayan-Rajbanshi committed Oct 17, 2024
1 parent 4fe85c3 commit 1b78e37
Show file tree
Hide file tree
Showing 5 changed files with 128 additions and 0 deletions.
25 changes: 25 additions & 0 deletions api/migrations/0215_alter_generaldocument_document_and_more.py
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'),
),
]
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'),
),
]
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'),
),
]
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'),
),
]
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'),
),
]

0 comments on commit 1b78e37

Please sign in to comment.