unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
8 lines • 357 B
JavaScript
;
exports.up = function (db, cb) {
db.runSql(`INSERT INTO settings(name, content) VALUES ('sign_on_log_retention', '{"hours": 336}')`, cb);
};
exports.down = function (db, cb) {
db.runSql(`DELETE FROM settings WHERE name = 'sign_on_log_retention'`, cb);
};
//# sourceMappingURL=20230227123106-add-setting-for-sign-on-log-retention.js.map