unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
13 lines • 482 B
JavaScript
;
exports.up = function (db, callback) {
db.runSql(`
ALTER TABLE change_request_events ALTER COLUMN feature DROP NOT NULL;
`, callback);
};
exports.down = function (db, callback) {
db.runSql(`
DELETE FROM change_request_events WHERE feature IS NULL;
ALTER TABLE change_request_events ALTER COLUMN feature SET NOT NULL;
`, callback);
};
//# sourceMappingURL=20230803061359-change-request-optional-feature.js.map