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

25 lines
575 B
JavaScript
Raw Normal View History

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,
);
};