unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
8 lines • 363 B
JavaScript
;
exports.up = function (db, cb) {
db.runSql(`ALTER TABLE milestone_strategies ADD COLUMN IF NOT EXISTS disabled BOOLEAN DEFAULT false;`, cb);
};
exports.down = function (db, cb) {
db.runSql(`ALTER TABLE milestone_strategies DROP COLUMN IF EXISTS disabled;`, cb);
};
//# sourceMappingURL=20260303132225-add-milestone-strategies-disabled.js.map