mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
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.
This commit is contained in:
parent
65e666fec0
commit
106e156d22
1 changed files with 1 additions and 1 deletions
|
@ -543,7 +543,7 @@ class PokemonFormGroup(TableBase):
|
||||||
__tablename__ = 'pokemon_form_groups'
|
__tablename__ = 'pokemon_form_groups'
|
||||||
pokemon_id = Column(Integer, ForeignKey('pokemon.id'), primary_key=True, nullable=False, autoincrement=False)
|
pokemon_id = Column(Integer, ForeignKey('pokemon.id'), primary_key=True, nullable=False, autoincrement=False)
|
||||||
is_battle_only = Column(Boolean, nullable=False)
|
is_battle_only = Column(Boolean, nullable=False)
|
||||||
description = Column(Unicode(512), nullable=False)
|
description = Column(rst.RstTextColumn(1024), nullable=False)
|
||||||
|
|
||||||
class PokemonFormSprite(TableBase):
|
class PokemonFormSprite(TableBase):
|
||||||
__tablename__ = 'pokemon_form_sprites'
|
__tablename__ = 'pokemon_form_sprites'
|
||||||
|
|
Loading…
Reference in a new issue