unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
15 lines • 357 B
JavaScript
;
exports.up = function (db, cb) {
db.runSql(`
ALTER TABLE projects ADD COLUMN health integer DEFAULT 100;
`, cb);
};
exports.down = function (db, cb) {
db.runSql(`
ALTER TABLE projects DROP COLUMN health;
`, cb);
};
exports._meta = {
version: 1,
};
//# sourceMappingURL=20210629130734-add-health-rating-to-project.js.map