X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/2b931d7a9cd2782246bb739bcff66e230bb706bd..93be19674c4072725be9aa4eac890931c8b0e294:/pokedex/db/tables.py diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index 5e7e99b..727582c 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -500,8 +500,8 @@ create_translation_table('item_names', Item, 'names', info=dict(description="The name", format='plaintext', official=True, ripped=True)), ) create_translation_table('item_prose', Item, 'prose', - short_effect = Column(Unicode(256), nullable=False, - info=dict(description="A short summary of the effect", format='plaintext')), + short_effect = Column(markdown.MarkdownColumn(256), nullable=False, + info=dict(description="A short summary of the effect", format='markdown')), effect = Column(markdown.MarkdownColumn(5120), nullable=False, info=dict(description=u"Detailed description of the item's effect.", format='markdown')), )