Timothy J. Baek 11 tháng trước cách đây
mục cha
commit
3be0fa63ee
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      backend/apps/web/internal/migrations/009_add_models.py

+ 2 - 2
backend/apps/web/internal/migrations/009_add_models.py

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