X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/2b931d7a9cd2782246bb739bcff66e230bb706bd..fe7fe27d1e5df6918fb9cf11d64686f85948c564:/pokedex/db/tables.py diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index 5e7e99b..d9905b6 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -500,7 +500,7 @@ 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, + short_effect = Column(markdown.MarkdownColumn(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 description of the item's effect.", format='markdown')),