1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00

feat: add column created_by to roles table (#5595)

Tracking who creates roles
This commit is contained in:
Christopher Kolstad 2023-12-11 15:40:17 +01:00 committed by GitHub
parent 4f7b3aa759
commit 150e6b03dc
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 roles ADD COLUMN created_by INTEGER`, cb);
};
exports.down = function(db, cb) {
db.runSql(`ALTER TABLE roles DROP COLUMN created_by`, cb);
};