char limit on short_name
This commit is contained in:
parent
ae46220a5c
commit
ed13ed2b11
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ FIELD_TYPES = (
|
|||
)
|
||||
|
||||
class ItemField(models.Model):
|
||||
short_name = models.CharField(max_length=20)
|
||||
short_name = models.CharField(max_length=255)
|
||||
description = models.CharField(max_length=255, blank=True)
|
||||
typ = models.CharField(choices=FIELD_TYPES, max_length=100)
|
||||
default_value = models.TextField(blank=True)
|
||||
|
|
Loading…
Add table
Reference in a new issue