fix example extension migration template.

This commit is contained in:
fiatjaf 2021-07-03 17:57:09 -03:00
parent 81e3424232
commit b7332bea64

View File

@ -1,11 +1,10 @@
# async def m001_initial(db):
# await db.execute(
# """
# f"""
# CREATE TABLE example.example (
# id TEXT PRIMARY KEY,
# wallet TEXT NOT NULL,
# time TIMESTAMP NOT NULL DEFAULT """ + db.timestamp_now + """
# time TIMESTAMP NOT NULL DEFAULT {db.timestamp_now}
# );
# """
# )