fix(table/language): galleryid is integer
This commit is contained in:
parent
a2269a1e21
commit
90370cfbf8
1 changed files with 1 additions and 1 deletions
|
@ -33,6 +33,6 @@ language_table = Table(
|
|||
Column("galleryinfo_id", Integer, ForeignKey("galleryinfo.id")),
|
||||
Column("url", String, nullable=False),
|
||||
Column("name", String, nullable=False),
|
||||
Column("galleryid", String, nullable=False),
|
||||
Column("galleryid", Integer, nullable=False),
|
||||
Column("language_localname", String, nullable=False),
|
||||
)
|
||||
|
|
Reference in a new issue