From bca9557cb92372aa2b06c40cf402e29430593657 Mon Sep 17 00:00:00 2001 From: vapao Date: Sat, 18 Jun 2022 22:41:59 +0800 Subject: [PATCH] =?UTF-8?q?U=20=E4=B8=BB=E6=9C=BA=E5=88=86=E7=BB=84?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E9=95=BF=E5=BA=A6=E5=A2=9E=E5=8A=A0=E5=88=B0?= =?UTF-8?q?50=E4=B8=AA=E5=AD=97=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spug_api/apps/host/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spug_api/apps/host/models.py b/spug_api/apps/host/models.py index 6845976..3726994 100644 --- a/spug_api/apps/host/models.py +++ b/spug_api/apps/host/models.py @@ -84,7 +84,7 @@ class HostExtend(models.Model, ModelMixin): class Group(models.Model, ModelMixin): - name = models.CharField(max_length=20) + name = models.CharField(max_length=50) parent_id = models.IntegerField(default=0) sort_id = models.IntegerField(default=0) hosts = models.ManyToManyField(Host, related_name='groups')