change choices size from 50 to 70

This commit is contained in:
catborise
2020-09-11 15:35:32 +03:00
parent 372ba5a0f2
commit 82f5fbf159
2 changed files with 19 additions and 1 deletions

View File

@@ -9,5 +9,5 @@ class AppSettings(models.Model):
name = models.CharField(_('name'), max_length=25, null=False)
key = models.CharField(_('key'), db_index=True, max_length=50, unique=True)
value = models.CharField(_('value'), max_length=25)
choices = models.CharField(_('choices'), max_length=50)
choices = models.CharField(_('choices'), max_length=70)
description = models.CharField(_('description'), max_length=100, null=True)