unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
12 lines • 363 B
JavaScript
;
exports.up = (db, cb) => {
db.runSql(`
ALTER TABLE release_plan_definitions ADD COLUMN archived_at TIMESTAMP WITH TIME ZONE;
`, cb);
};
exports.down = (db, cb) => {
db.runSql(`
ALTER TABLE release_plan_definitions DROP COLUMN archived_at;
`, cb);
};
//# sourceMappingURL=20250304122705-archive-release-template.js.map