make old paperlesstask name field nullable to fix downgrade migration

This commit is contained in:
Michael Shamoon 2023-01-23 13:31:01 -08:00
parent 643486b14b
commit f261c70f1e

View File

@ -24,7 +24,7 @@ class Migration(migrations.Migration):
),
),
("task_id", models.CharField(max_length=128)),
("name", models.CharField(max_length=256)),
("name", models.CharField(max_length=256, null=True)),
(
"created",
models.DateTimeField(auto_now=True, verbose_name="created"),