1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00
unleash.unleash/src/migrations/20210212114759-add-session-table.js
Christopher Kolstad ff7be7696c
fix: Stores as typescript and with interfaces. (#902)
Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
2021-08-12 15:04:37 +02:00

25 lines
575 B
JavaScript

exports.up = function (db, cb) {
db.runSql(
`
CREATE TABLE unleash_session (
sid varchar PRIMARY KEY,
sess json NOT NULL,
created_at TIMESTAMP WITH TIME ZONE DEFAULT now(),
expired TIMESTAMP WITH TIME ZONE NOT NULL
);
CREATE INDEX idx_unleash_session_expired ON unleash_session(expired);
`,
cb,
);
};
exports.down = function (db, cb) {
db.runSql(
`
DROP INDEX idx_unleash_session_expired;
DROP TABLE unleash_session;
`,
cb,
);
};