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 features DROP COLUMN IF EXISTS archived; `, cb); }; exports.down = function (db, cb) { db.runSql(` ALTER TABLE features ADD COLUMN IF NOT EXISTS archived BOOLEAN DEFAULT FALSE; `, cb); }; //# sourceMappingURL=20240305094305-features-remove-archived.js.map