mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
28f821cb34
Opt-out table for emails
16 lines
413 B
JavaScript
16 lines
413 B
JavaScript
exports.up = function(db, cb) {
|
|
db.runSql(`
|
|
CREATE TABLE IF NOT EXISTS user_unsubscription
|
|
(
|
|
user_id INTEGER NOT NULL references users (id),
|
|
subscription VARCHAR(255) NOT NULL,
|
|
created_at TIMESTAMP DEFAULT now(),
|
|
PRIMARY KEY (user_id, subscription)
|
|
);
|
|
`, cb);
|
|
};
|
|
|
|
exports.down = function(db, cb) {
|
|
db.runSql(`DROP TABLE IF EXISTS user_unsubscription;`, cb);
|
|
};
|