Use a TextField for the storage path field (#7967)

This commit is contained in:
Trenton H
2024-10-20 11:23:46 -07:00
committed by GitHub
parent 0520db5e93
commit 544e9c4fe2
2 changed files with 2 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name="storagepath",
name="path",
field=models.CharField(max_length=2048, verbose_name="path"),
field=models.TextField(verbose_name="path"),
),
migrations.RunPython(
convert_from_format_to_template,