Add a description field to teams.
This commit is contained in:
parent
7991c3eff8
commit
ac71822352
4 changed files with 7 additions and 4 deletions
|
@ -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
|
||||
|
|
Reference in a new issue