UNPKG

unleash-server

Version:

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

12 lines 384 B
'use strict'; exports.up = function (db, callback) { db.runSql(` ALTER TABLE feature_tag ADD COLUMN IF NOT EXISTS created_by INTEGER; `, callback); }; exports.down = function (db, callback) { db.runSql(` ALTER TABLE feature_tag DROP COLUMN IF EXISTS created_by; `, callback); }; //# sourceMappingURL=20231211122351-feature-tag-created-by.js.map