This commit is contained in:
Timothy J. Baek 2024-04-27 19:42:19 -07:00
parent 85df019c2a
commit 5e97c9927b
1 changed files with 1 additions and 1 deletions

View File

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