UNPKG

unleash-server

Version:

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

16 lines 380 B
exports.up = function (db, cb) { db.runSql(` ALTER TABLE features DROP COLUMN strategies; `, cb); }; exports.down = function (db, cb) { db.runSql(` ALTER TABLE features ADD COLUMN strategies json; `, cb); }; exports._meta = { version: 1, }; //# sourceMappingURL=20210624114855-drop-strategies-column-from-features.js.map