feat: update to v1.0.0
This commit is contained in:
parent
42b5edaf5d
commit
48b1069a9f
12 changed files with 1447 additions and 1370 deletions
|
|
@ -21,3 +21,15 @@ async def m001_initial(db):
|
|||
);
|
||||
"""
|
||||
)
|
||||
|
||||
|
||||
async def m002_add_timestamp(db):
|
||||
"""
|
||||
Add timestamp to templates table.
|
||||
"""
|
||||
await db.execute(
|
||||
f"""
|
||||
ALTER TABLE myextension.maintable
|
||||
ADD COLUMN created_at TIMESTAMP NOT NULL DEFAULT {db.timestamp_now};
|
||||
"""
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue