Enable nullable MarkdownColumns
[zzz-pokedex.git] / pokedex / db / tables.py
index 5e7e99b..727582c 100644 (file)
@@ -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')),
 )