1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/src/migrations/20240116104456-drop-unused-column-permissionid.js
Nuno Góis aeb9c85f11
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.
2024-01-16 10:56:22 +00:00

20 lines
332 B
JavaScript

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
);
};