unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
14 lines • 381 B
JavaScript
;
exports.up = function (db, cb) {
db.runSql(`
ALTER TABLE stat_edge_observability
ADD COLUMN hosting TEXT;
`, cb);
};
exports.down = function (db, cb) {
db.runSql(`
ALTER TABLE stat_edge_observability
DROP COLUMN IF EXISTS hosting;
`, cb);
};
//# sourceMappingURL=20251118131212-edge-observability-hosting.js.map