format code

This commit is contained in:
Gwyn Hannay
2022-07-29 20:32:07 -07:00
committed by Trenton Holmes
parent 89c26f9604
commit b8b0d18b25
3 changed files with 13 additions and 6 deletions

View File

@@ -6,13 +6,20 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('documents', '1022_paperlesstask'),
("documents", "1022_paperlesstask"),
]
operations = [
migrations.AddField(
model_name='document',
name='original_filename',
field=models.CharField(default=None, editable=False, help_text='The original name of the file when it was uploaded', max_length=1024, null=True, verbose_name='original filename'),
model_name="document",
name="original_filename",
field=models.CharField(
default=None,
editable=False,
help_text="The original name of the file when it was uploaded",
max_length=1024,
null=True,
verbose_name="original filename",
),
),
]