소스 검색

Merge pull request #1805 from open-webui/dev

fix
Timothy Jaeryang Baek 1 년 전
부모
커밋
d401d77cbd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      backend/apps/web/internal/migrations/001_initial_schema.py

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