UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

12 lines 347 B
"use strict"; 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); }; //# sourceMappingURL=20240124123000-add-enabled-to-action-sets.js.map