mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Added a short_effect column to the items table.
This commit is contained in:
parent
56066f34b9
commit
d280cfac94
2 changed files with 671 additions and 669 deletions
File diff suppressed because it is too large
Load diff
|
@ -363,6 +363,8 @@ class Item(TableBase):
|
|||
info=dict(description=u"Power of the move Fling when used with this item."))
|
||||
fling_effect_id = Column(Integer, ForeignKey('item_fling_effects.id'), nullable=True,
|
||||
info=dict(description=u"ID of the fling-effect of the move Fling when used with this item. Note that these are different from move effects."))
|
||||
short_effect = Column(Unicode(256), nullable=False,
|
||||
info=dict(description="A short summary of the effect", format='plaintext'))
|
||||
effect = Column(markdown.MarkdownColumn(5120), nullable=False,
|
||||
info=dict(description=u"Detailed English description of the item's effect.", format='markdown'))
|
||||
|
||||
|
|
Loading…
Reference in a new issue