mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Ditch server_default in conquest_pokemon_evolution. #96
This commit is contained in:
parent
fb6076dba3
commit
501a5ce74f
1 changed files with 1 additions and 1 deletions
|
@ -399,7 +399,7 @@ class ConquestPokemonEvolution(TableBase):
|
||||||
info=dict(description=u"The ID of the gender the Pokémon's warrior must be."))
|
info=dict(description=u"The ID of the gender the Pokémon's warrior must be."))
|
||||||
item_id = Column(Integer, ForeignKey('items.id'), nullable=True,
|
item_id = Column(Integer, ForeignKey('items.id'), nullable=True,
|
||||||
info=dict(description=u"The ID of the item the Pokémon's warrior must have equipped."))
|
info=dict(description=u"The ID of the item the Pokémon's warrior must have equipped."))
|
||||||
recruiting_ko_required = Column(Boolean, nullable=False, server_default='False',
|
recruiting_ko_required = Column(Boolean, nullable=False,
|
||||||
info=dict(description=u"If true, the Pokémon must KO a Pokémon under the right conditions to recruit that Pokémon's warrior."))
|
info=dict(description=u"If true, the Pokémon must KO a Pokémon under the right conditions to recruit that Pokémon's warrior."))
|
||||||
|
|
||||||
class ConquestPokemonMove(TableBase):
|
class ConquestPokemonMove(TableBase):
|
||||||
|
|
Loading…
Reference in a new issue