regression migration

This commit is contained in:
dni ⚡ 2025-03-04 09:38:58 +01:00
parent b5b5b318a0
commit 9351c10b08
No known key found for this signature in database
GPG Key ID: D1F416F29AD26E87

View File

@ -283,7 +283,7 @@ async def m009_create_tinyurl_table(db: Connection):
time TIMESTAMP NOT NULL DEFAULT %ts
);
""",
safe_replace={"ts": db.timestamp_column_default},
safe_replace={"ts": db.timestamp_now},
)
@ -701,7 +701,7 @@ async def m029_create_audit_table(db: Connection):
created_at TIMESTAMP NOT NULL DEFAULT %ts
);
""",
safe_replace={"ts": db.timestamp_column_default},
safe_replace={"ts": db.timestamp_now},
)