This commit is contained in:
Timothy J. Baek 2024-05-23 22:59:11 -07:00
parent 363ab562c3
commit 3be0fa63ee
1 changed files with 2 additions and 2 deletions

View File

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