Update field max length

This commit is contained in:
aftermath2
2023-04-01 12:00:00 +00:00
parent d5b8cd7134
commit 5269351094

View File

@ -13,6 +13,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='order',
name='description',
field=models.TextField(blank=True, default=None, max_length=200, null=True),
field=models.TextField(blank=True, default=None, max_length=240, null=True),
),
]