UNPKG

unleash-server

Version:

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

12 lines 337 B
'use strict'; exports.up = function (db, callback) { db.runSql(` CREATE INDEX idx_events_type ON events (type); `, callback); }; exports.down = function (db, callback) { db.runSql(` DROP INDEX IF EXISTS idx_events_type; `, callback); }; //# sourceMappingURL=20240812132633-events-type-index.js.map