mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Disable autoincrement for MoveMetaAilment.
This commit is contained in:
parent
8b81053a90
commit
305f739190
1 changed files with 1 additions and 1 deletions
|
@ -850,7 +850,7 @@ class MoveMetaAilment(TableBase):
|
|||
"""
|
||||
__tablename__ = 'move_meta_ailments'
|
||||
__singlename__ = 'move_meta_ailment'
|
||||
id = Column(Integer, primary_key=True, nullable=False,
|
||||
id = Column(Integer, primary_key=True, nullable=False, autoincrement=False,
|
||||
info=dict(description="A numeric ID"))
|
||||
identifier = Column(Unicode(24), nullable=False,
|
||||
info=dict(description="An identifier", format='identifier'))
|
||||
|
|
Loading…
Reference in a new issue