postgres support.

This commit is contained in:
fiatjaf
2021-07-02 17:34:31 -03:00
parent eeb3e66529
commit 2f309c9863
54 changed files with 624 additions and 540 deletions
+2 -2
View File
@@ -2,10 +2,10 @@
# await db.execute(
# """
# CREATE TABLE IF NOT EXISTS example (
# CREATE TABLE example.example (
# id TEXT PRIMARY KEY,
# wallet TEXT NOT NULL,
# time TIMESTAMP NOT NULL DEFAULT (strftime('%s', 'now'))
# time TIMESTAMP NOT NULL DEFAULT """ + db.timestamp_now + """
# );
# """
# )