X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/08ed701502c20612ef794f27a58a6909664cccf3..e1255ba7fe94ba8f87dd833bcf9948893a6d79dc:/pokedex/db/tables.py diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index c025059..1bbab38 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -984,7 +984,7 @@ class PokemonEvolution(TableBase): info=dict(description=u"The ID of the location the evolution must be triggered at.")) held_item_id = Column(Integer, ForeignKey('items.id'), nullable=True, info=dict(description=u"The ID of the item the Pokémon must hold.")) - time_of_day = Column(Enum('morning', 'day', 'night', name='pokemon_evolution_time_of_day'), nullable=True, + time_of_day = Column(Enum('day', 'night', name='pokemon_evolution_time_of_day'), nullable=True, info=dict(description=u"The required time of day.")) known_move_id = Column(Integer, ForeignKey('moves.id'), nullable=True, info=dict(description=u"The ID of the move the Pokémon must know."))