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')