X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/d5cf1a25f761c252b7c3f5ab08cfe4617cbf85ee..a227e7adcc899aac9b7c0cb4ff2d4c7428349fce:/pokedex/db/tables.py diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index d56bf65..1c1db60 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -264,7 +264,7 @@ class EggGroup(TableBase): create_translation_table('egg_group_prose', EggGroup, 'names', name = Column(Unicode(16), nullable=False, index=True, - info=dict(description="The name", format='plaintext', official=False)), + info=dict(description="The name", format='plaintext', official=True)), ) class Encounter(TableBase): @@ -1557,7 +1557,7 @@ class SuperContestEffect(TableBase): create_translation_table('super_contest_effect_prose', SuperContestEffect, 'prose', flavor_text = Column(Unicode(64), nullable=False, - info=dict(description=u"A description of the effect.", format='plaintext')), + info=dict(description=u"A description of the effect.", format='plaintext', official=True)), )