From 544e9c4fe214bbd706853044cd4fd95b4f88af29 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Sun, 20 Oct 2024 11:23:46 -0700 Subject: [PATCH] Use a TextField for the storage path field (#7967) --- src/documents/migrations/1055_alter_storagepath_path.py | 2 +- src/documents/models.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/documents/migrations/1055_alter_storagepath_path.py b/src/documents/migrations/1055_alter_storagepath_path.py index 8231aacd7..1421bf824 100644 --- a/src/documents/migrations/1055_alter_storagepath_path.py +++ b/src/documents/migrations/1055_alter_storagepath_path.py @@ -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, diff --git a/src/documents/models.py b/src/documents/models.py index 23325739c..37c86305c 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -125,9 +125,8 @@ class DocumentType(MatchingModel): class StoragePath(MatchingModel): - path = models.CharField( + path = models.TextField( _("path"), - max_length=2048, ) class Meta(MatchingModel.Meta):