UNPKG

unleash-server

Version:

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

16 lines 428 B
"use strict"; exports.up = function (db, cb) { db.runSql(` ALTER TABLE events ADD COLUMN IF NOT EXISTS group_type TEXT, ADD COLUMN IF NOT EXISTS group_id TEXT; `, cb); }; exports.down = function (db, cb) { db.runSql(` ALTER TABLE events DROP COLUMN IF EXISTS group_id, DROP COLUMN IF EXISTS group_type; `, cb); }; //# sourceMappingURL=20250630114145-add-transaction-context-to-events.js.map