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

Added abilities' generations to the database.

This commit is contained in:
Zhorken 2010-05-01 17:33:11 -04:00
parent b8481d551a
commit 3007297ede
2 changed files with 128 additions and 125 deletions
pokedex/db

View file

@ -17,6 +17,7 @@ class Ability(TableBase):
__singlename__ = 'ability'
id = Column(Integer, primary_key=True, nullable=False)
name = Column(Unicode(24), nullable=False)
generation_id = Column(Integer, ForeignKey('generations.id'), nullable=False)
flavor_text = Column(Unicode(64), nullable=False)
effect = Column(Unicode(255), nullable=False)
@ -628,6 +629,8 @@ class Version(TableBase):
### Relations down here, to avoid ordering problems
Ability.generation = relation(Generation, backref='abilities')
Berry.berry_firmness = relation(BerryFirmness, backref='berries')
Berry.firmness = association_proxy('berry_firmness', 'name')
Berry.flavors = relation(BerryFlavor, order_by=BerryFlavor.contest_type_id, backref='berry')