X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/7e756ef244438b09b9ab8b28cc12a15c74e310b7..dcf2481cea826b6a1d0ae19d8db295b22d024bc0:/pokedex/db/tables.py diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index b3001c6..3a82fa2 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -1251,7 +1251,8 @@ class PokemonEvolution(TableBase): Any condition may be null if it does not apply for a particular Pokémon. """ __tablename__ = 'pokemon_evolution' - id = Column(Integer, primary_key=True, nullable=False) + id = Column(Integer, primary_key=True, nullable=False, + info=dict(description=u"A numeric ID")) evolved_pokemon_id = Column(Integer, ForeignKey('pokemon.id'), nullable=False, info=dict(description=u"The ID of the post-evolution Pokémon.")) evolution_trigger_id = Column(Integer, ForeignKey('evolution_triggers.id'), nullable=False,