Ditch server_default in conquest_pokemon_evolution. #96

This commit is contained in:
Lynn "Zhorken" Vaughan 2013-03-17 02:18:11 -04:00
parent fb6076dba3
commit 501a5ce74f

View file

@ -399,7 +399,7 @@ class ConquestPokemonEvolution(TableBase):
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,
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."))
class ConquestPokemonMove(TableBase):