2021-08-12 15:04:37 +02:00
|
|
|
exports.up = function (db, cb) {
|
2021-04-16 15:29:23 +02:00
|
|
|
db.runSql(
|
|
|
|
`
|
|
|
|
CREATE TABLE IF NOT EXISTS reset_tokens
|
|
|
|
(
|
|
|
|
reset_token text PRIMARY KEY NOT NULL,
|
|
|
|
user_id integer,
|
|
|
|
expires_at timestamp with time zone NOT NULL,
|
|
|
|
used_at timestamp with time zone,
|
|
|
|
created_at timestamp with time zone DEFAULT now(),
|
|
|
|
created_by text,
|
|
|
|
FOREIGN KEY (user_id) REFERENCES users (id) ON DELETE CASCADE
|
|
|
|
);
|
|
|
|
|
|
|
|
`,
|
|
|
|
cb,
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-08-12 15:04:37 +02:00
|
|
|
exports.down = function (db, cb) {
|
2021-04-16 15:29:23 +02:00
|
|
|
db.runSql('DROP TABLE reset_tokens;', cb);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports._meta = {
|
|
|
|
version: 1,
|
|
|
|
};
|