UNPKG

unleash-server

Version:

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

12 lines 374 B
'use strict'; exports.up = function (db, cb) { db.runSql(` ALTER TABLE context_fields ADD COLUMN IF NOT EXISTS stickiness boolean DEFAULT false `, cb); }; exports.down = function (db, cb) { db.runSql(` ALTER TABLE context_fields DROP COLUMN IF EXISTS stickiness; `, cb); }; //# sourceMappingURL=20210208203708-add-stickiness-to-context.js.map