mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
fix
This commit is contained in:
parent
363ab562c3
commit
3be0fa63ee
1 changed files with 2 additions and 2 deletions
|
|
@ -48,8 +48,8 @@ def migrate(migrator: Migrator, database: pw.Database, *, fake=False):
|
|||
meta = pw.TextField()
|
||||
params = pw.TextField()
|
||||
|
||||
created_at = (pw.BigIntegerField(null=False),)
|
||||
updated_at = (pw.BigIntegerField(null=False),)
|
||||
created_at = pw.BigIntegerField(null=False)
|
||||
updated_at = pw.BigIntegerField(null=False)
|
||||
|
||||
class Meta:
|
||||
table_name = "model"
|
||||
|
|
|
|||
Loading…
Reference in a new issue