mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Make the schema tests pass
This commit is contained in:
parent
ae5225c932
commit
5d18ae7ab6
2 changed files with 3 additions and 6 deletions
pokedex/db
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue