Переход с SQLite3 на PostgreSQL
This commit is contained in:
@@ -1,12 +1,8 @@
|
||||
BEGIN;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS 'wins'
|
||||
(
|
||||
'id' Integer PRIMARY KEY AUTOINCREMENT,
|
||||
'timestamp' DateTime NOT NULL DEFAULT (datetime(CURRENT_TIMESTAMP, 'localtime')),
|
||||
'data' Text NOT NULL
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS 'index_timestamp' ON 'wins' ('timestamp');
|
||||
CREATE TABLE "public"."wins" (
|
||||
"data" JSON NOT NULL,
|
||||
"timestamp" Timestamp Without Time Zone DEFAULT CURRENT_TIMESTAMP );
|
||||
;
|
||||
|
||||
COMMIT;
|
||||
|
||||
Reference in New Issue
Block a user