mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Form groups, rst => markdown
This commit is contained in:
parent
17037f53d3
commit
47631116fb
2 changed files with 9 additions and 9 deletions
pokedex/db
|
@ -563,7 +563,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(rst.RstTextColumn(1024), nullable=False)
|
||||
description = Column(markdown.MarkdownColumn(1024), nullable=False)
|
||||
|
||||
class PokemonFormSprite(TableBase):
|
||||
__tablename__ = 'pokemon_form_sprites'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue