1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00

Sort out all the non-nullable columns with empty values.

This commit is contained in:
Lynn "Zhorken" Vaughan 2014-02-21 16:21:36 -05:00
parent 7b2743be75
commit 5b759feaa2
4 changed files with 5 additions and 8 deletions
pokedex/db

View file

@ -1062,7 +1062,7 @@ class LocationArea(TableBase):
create_translation_table('location_area_prose', LocationArea, 'prose',
relation_lazy='joined',
name = Column(Unicode(64), nullable=False, index=True,
name = Column(Unicode(64), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=False)),
)