Updated example extension

This commit is contained in:
benarc
2020-12-02 10:45:12 +00:00
parent 31b1c0d1d5
commit 503c981bc9
3 changed files with 24 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
#async def m001_initial(db):
# await db.execute(
# """
# CREATE TABLE IF NOT EXISTS example (
# id TEXT PRIMARY KEY,
# wallet TEXT NOT NULL,
# time TIMESTAMP NOT NULL DEFAULT (strftime('%s', 'now'))
# );
# """
# )