unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
14 lines • 343 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