mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
cee2500a4d
## About the changes Adds enabled to action sets table
18 lines
311 B
JavaScript
18 lines
311 B
JavaScript
exports.up = function (db, cb) {
|
|
db.runSql(
|
|
`
|
|
ALTER TABLE action_sets ADD COLUMN enabled BOOLEAN DEFAULT true;
|
|
`,
|
|
cb,
|
|
);
|
|
};
|
|
|
|
exports.down = function (db, cb) {
|
|
db.runSql(
|
|
`
|
|
ALTER TABLE action_sets DROP COLUMN enabled;
|
|
`,
|
|
cb,
|
|
);
|
|
};
|