UNPKG

unleash-server

Version:

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

16 lines 615 B
'use strict'; exports.up = function (db, cb) { db.runSql(` ALTER TABLE project_settings ADD COLUMN IF NOT EXISTS "feature_naming_pattern" text; ALTER TABLE project_settings ADD COLUMN IF NOT EXISTS "feature_naming_example" text; `, cb()); }; exports.down = function (db, cb) { db.runSql(` ALTER TABLE project_settings DROP COLUMN IF EXISTS "feature_naming_pattern"; ALTER TABLE project_settings DROP COLUMN IF EXISTS "feature_naming_example"; `, cb); }; //# sourceMappingURL=20230830121352-update-client-applications-usage-table.js.map