Merge branch 'dev' into beta

This commit is contained in:
shamoon
2024-10-20 19:06:52 -07:00
6 changed files with 473 additions and 398 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,

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):

File diff suppressed because it is too large Load Diff