unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
13 lines • 451 B
JavaScript
;
exports.up = function (db, cb) {
db.runSql(`
CREATE INDEX IF NOT EXISTS idx_client_applications_announced_false ON client_applications (announced)
WHERE announced = FALSE;
`, cb);
};
exports.down = function (db, cb) {
db.runSql(`
DROP INDEX IF EXISTS idx_client_applications_announced_false;
`, cb);
};
//# sourceMappingURL=20240207164033-client-applications-announced-index.js.map