1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00

feat(db): user email unsubscription

This commit is contained in:
Tymoteusz Czech 2024-10-31 12:31:07 +01:00
parent 97ad814adf
commit 6c54b94a20
No known key found for this signature in database
GPG Key ID: 133555230D88D75F

View File

@ -0,0 +1,15 @@
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);
};