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:
parent
7b2743be75
commit
5b759feaa2
4 changed files with 5 additions and 8 deletions
pokedex/db
|
@ -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)),
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue