mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
feat: add created_by to role_permission table (#5592)
As it says on the tin. In an attempt to make all operations in Unleash traceable to an originator. This PR adds created_by to role_permission, which will show which user assigned a permission to a role.
This commit is contained in:
parent
ed220c0b89
commit
0f250ba06c
@ -0,0 +1,7 @@
|
||||
exports.up = function(db, cb) {
|
||||
db.runSql(`ALTER TABLE role_permission ADD COLUMN created_by INTEGER`, cb);
|
||||
};
|
||||
|
||||
exports.down = function(db, cb) {
|
||||
db.runSql(`ALTER TABLE role_permission DROP COLUMN created_by`, cb);
|
||||
};
|
Loading…
Reference in New Issue
Block a user