UNPKG

unleash-server

Version:

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

11 lines 311 B
'use strict'; exports.up = function (db, cb) { db.runSql(` DELETE FROM events WHERE type = 'application-created'; UPDATE client_applications SET announced = false; `, cb); }; exports.down = function (db, cb) { cb(); }; //# sourceMappingURL=20210323073508-reset-application-announcements.js.map