Add a description field to teams.

This commit is contained in:
yackob03 2013-11-04 16:57:20 -05:00
parent 7991c3eff8
commit ac71822352
4 changed files with 7 additions and 4 deletions

View file

@ -45,6 +45,7 @@ class Team(BaseModel):
name = CharField(index=True)
organization = ForeignKeyField(User, index=True)
role = ForeignKeyField(TeamRole)
description = TextField(default='')
class Meta:
database = db