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

@@ -125,9 +125,8 @@ class DocumentType(MatchingModel):
class StoragePath(MatchingModel):
path = models.CharField(
path = models.TextField(
_("path"),
max_length=2048,
)
class Meta(MatchingModel.Meta):