1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

feat: add column created_by to users table (#5597)

This commit is contained in:
Christopher Kolstad 2023-12-11 15:39:07 +01:00 committed by GitHub
parent 74f6f15247
commit ed220c0b89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,7 @@
exports.up = function(db, cb) {
db.runSql(`ALTER TABLE users ADD COLUMN created_by INTEGER`, cb);
};
exports.down = function(db, cb) {
db.runSql(`ALTER TABLE users DROP COLUMN created_by`, cb);
};