修改bug

pull/6/head
ibuler 2014-12-22 23:42:11 +08:00
parent bc5422821d
commit 39b4266458
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
from django.db import models
class Group(models):
class Group(models.Model):
name = models.CharField(max_length=80, unique=True)
comment = models.CharField(max_length=160, blank=True, null=True)