mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
chore: delete unnecessary column permission_id (#5413)
Follows up on https://github.com/Unleash/unleash/pull/5409 and drops this column, since it's no longer used. See: https://github.com/Unleash/unleash/pull/5409#discussion_r1404112310 Should only be merged after ~~`5.7`~~ `5.8` has been released.
This commit is contained in:
parent
dfeaea8ee9
commit
aeb9c85f11
@ -0,0 +1,19 @@
|
|||||||
|
exports.up = function (db, cb) {
|
||||||
|
db.runSql(
|
||||||
|
`
|
||||||
|
ALTER TABLE role_permission
|
||||||
|
DROP COLUMN permission_id;
|
||||||
|
`,
|
||||||
|
cb
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.down = function (db, cb) {
|
||||||
|
db.runSql(
|
||||||
|
`
|
||||||
|
ALTER TABLE role_permission
|
||||||
|
ADD COLUMN permission_id INTEGER;
|
||||||
|
`,
|
||||||
|
cb
|
||||||
|
);
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user