Merge pull request #1805 from open-webui/dev

fix
This commit is contained in:
Timothy Jaeryang Baek 2024-04-27 19:42:51 -07:00 committed by GitHub
commit d401d77cbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -135,7 +135,7 @@ def migrate_sqlite(migrator: Migrator, database: pw.Database, *, fake=False):
email = pw.CharField(max_length=255)
role = pw.CharField(max_length=255)
profile_image_url = pw.CharField(max_length=255)
timestamp = pw.DateField()
timestamp = pw.BigIntegerField()
class Meta:
table_name = "user"