UNPKG

unleash-server

Version:

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

13 lines 425 B
'use strict'; exports.up = function (db, cb) { db.runSql(` ALTER TABLE project_settings ADD COLUMN IF NOT EXISTS "feature_naming_description" text; `, cb()); }; exports.down = function (db, cb) { db.runSql(` ALTER TABLE project_settings DROP COLUMN IF EXISTS "feature_naming_description"; `, cb); }; //# sourceMappingURL=20230905122605-add-feature-naming-description.js.map