change path max_length to 255 for mysql compliance

This commit is contained in:
bkfox
2017-08-30 13:03:43 +02:00
parent 726ff50b7c
commit cf92f50fcd
2 changed files with 2 additions and 2 deletions

View File

@ -992,7 +992,7 @@ class Sound(Nameable):
recursive = True,
blank = True, null = True,
unique = True,
max_length = 256
max_length = 255
)
embed = models.TextField(
_('embed HTML code'),