Added gerty migration for UTC offset col

This commit is contained in:
Black Coffee
2022-10-20 16:40:48 +01:00
parent 07042a7d4f
commit f636951d3c
+8
View File
@@ -16,3 +16,11 @@ async def m001_initial(db):
);
"""
)
async def m002_add_utc_offset_col(db):
"""
support for UTC offset
"""
await db.execute(
"ALTER TABLE gerty.gertys ADD COLUMN utc_offset INT;"
)