From 501a5ce74f94b2bc8c47ba40be90056f5ca04d06 Mon Sep 17 00:00:00 2001 From: "Lynn \"Zhorken\" Vaughan" Date: Sun, 17 Mar 2013 02:18:11 -0400 Subject: [PATCH] Ditch server_default in conquest_pokemon_evolution. #96 --- pokedex/db/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index c3566cf..9291e89 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -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):