Browse Source

Merge pull request #1805 from open-webui/dev

fix
Timothy Jaeryang Baek 1 năm trước cách đây
mục cha
commit
d401d77cbd

+ 1 - 1
backend/apps/web/internal/migrations/001_initial_schema.py

@@ -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"