unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
14 lines • 444 B
JavaScript
;
exports.up = function (db, cb) {
db.runSql(`
UPDATE feature_strategies
SET project_name = project
FROM features
WHERE features.project != feature_strategies.project_name;
`, cb);
};
// This is a fix for a broken state, we don't want this to be rolled back
exports.down = function (db, cb) {
cb();
};
//# sourceMappingURL=20220511111823-patch-broken-feature-strategies.js.map