Timothy J. Baek 11 ماه پیش
والد
کامیت
3be0fa63ee
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  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"