1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00

Add identifiers for move flags.

This commit is contained in:
Eevee 2010-07-11 01:31:43 -07:00
parent ed4adf16f9
commit c65c72842f
2 changed files with 8 additions and 7 deletions
pokedex/db

View file

@ -342,6 +342,7 @@ class MoveFlag(TableBase):
class MoveFlagType(TableBase):
__tablename__ = 'move_flag_types'
id = Column(Integer, primary_key=True, nullable=False)
identifier = Column(Unicode(16), nullable=False)
name = Column(Unicode(32), nullable=False)
description = Column(markdown.MarkdownColumn(128), nullable=False)