bump media_file maximum path to 255 characters, resolves #158

This commit is contained in:
meeb 2021-09-24 15:53:33 +10:00
parent b70703b7a7
commit 9a543b1496
1 changed files with 1 additions and 1 deletions

View File

@ -655,7 +655,7 @@ class Media(models.Model):
media_file = models.FileField(
_('media file'),
upload_to=get_media_file_path,
max_length=200,
max_length=255,
blank=True,
null=True,
storage=media_file_storage,