1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00

Toss the capacity column now that it's a stat.

This commit is contained in:
Lynn "Zhorken" Vaughan 2012-08-07 00:13:00 -04:00
parent 95422bc985
commit f11058dd2f
2 changed files with 243 additions and 245 deletions
pokedex/db

View file

@ -471,8 +471,6 @@ class ConquestWarriorRank(TableBase):
info=dict(description=u'The rank number.'))
skill_id = Column(Integer, ForeignKey('conquest_warrior_skills.id'), nullable=False,
info=dict(description=u"The ID of this warrior rank's warrior skill."))
capacity = Column(Integer, nullable=False,
info=dict(description=u'The number of Pokémon this warrior rank can be linked with at a time.'))
__table_args__ = (
UniqueConstraint(warrior_id, rank),