From 16deb594e568c9700d93d43fc9d29511176dd2fc Mon Sep 17 00:00:00 2001 From: Zhorken Date: Wed, 26 May 2010 14:46:01 -0400 Subject: [PATCH] Update the form group description column. #210 I meant to include this in the last commit. Whoops. Rotom's description is *really long*, so I needed to bump the length up to fit it. Also changed it to an RstTextColumn. --- 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 8033879..8bd9c90 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -543,7 +543,7 @@ class PokemonFormGroup(TableBase): __tablename__ = 'pokemon_form_groups' pokemon_id = Column(Integer, ForeignKey('pokemon.id'), primary_key=True, nullable=False, autoincrement=False) is_battle_only = Column(Boolean, nullable=False) - description = Column(Unicode(512), nullable=False) + description = Column(rst.RstTextColumn(1024), nullable=False) class PokemonFormSprite(TableBase): __tablename__ = 'pokemon_form_sprites' -- 2.7.4