Added gerty migration for UTC offset col
This commit is contained in:
parent
07042a7d4f
commit
f636951d3c
1 changed files with 8 additions and 0 deletions
|
|
@ -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;"
|
||||||
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue