mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
aeb9c85f11
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.
20 lines
332 B
JavaScript
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
|
|
);
|
|
};
|