Fix 1023, 1024 migrations, add savedviewfilterrule migration

This commit is contained in:
Michael Shamoon
2022-08-26 09:50:02 -07:00
parent 2a3c424476
commit a1f1a0bf60
4 changed files with 95 additions and 19 deletions

View File

@@ -0,0 +1,25 @@
# Generated by Django 4.0.6 on 2022-07-25 06:34
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("documents", "1023_add_comments"),
]
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",
),
),
]