Timothy J. Baek hace 1 año
padre
commit
5e97c9927b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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"