fix: 修改textfield 不再限制长度

This commit is contained in:
ibuler
2020-10-19 11:37:27 +08:00
committed by Jiangjie.Bai
parent 90afabdcb2
commit 7f53a80855
4 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ class Ticket(OrgModelMixin, CommonModelMixin):
type = models.CharField(max_length=16, choices=TYPE.choices, default=TYPE.GENERAL, verbose_name=_("Type"))
status = models.CharField(choices=STATUS.choices, max_length=16, default='open')
action = models.CharField(choices=ACTION.choices, max_length=16, default='', blank=True)
comment = models.TextField(max_length=128, default='', blank=True, verbose_name=_('Comment'))
comment = models.TextField(default='', blank=True, verbose_name=_('Comment'))
origin_objects = models.Manager()