Why does color name have a length limit? I am stupid.

This commit is contained in:
Eevee 2013-02-07 00:47:07 -08:00
parent d2277f23a0
commit 439eeffdd2

View file

@ -1595,12 +1595,12 @@ class PokemonColor(TableBase):
__singlename__ = 'pokemon_color' __singlename__ = 'pokemon_color'
id = Column(Integer, primary_key=True, nullable=False, autoincrement=False, id = Column(Integer, primary_key=True, nullable=False, autoincrement=False,
info=dict(description=u"ID of the Pokémon")) info=dict(description=u"ID of the Pokémon"))
identifier = Column(Unicode(6), nullable=False, identifier = Column(Unicode, nullable=False,
info=dict(description=u"An identifier", format='identifier')) info=dict(description=u"An identifier", format='identifier'))
create_translation_table('pokemon_color_names', PokemonColor, 'names', create_translation_table('pokemon_color_names', PokemonColor, 'names',
relation_lazy='joined', relation_lazy='joined',
name = Column(Unicode(6), nullable=False, index=True, name = Column(Unicode, nullable=False, index=True,
info=dict(description="The name", format='plaintext', official=True)), info=dict(description="The name", format='plaintext', official=True)),
) )