unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
17 lines • 434 B
JavaScript
/* eslint camelcase: "off" */
;
exports.up = function (db, cb) {
return db.createTable('settings', {
name: {
type: 'string',
length: 255,
primaryKey: true,
notNull: true,
},
content: { type: 'json' },
}, cb);
};
exports.down = function (db, cb) {
return db.dropTable('settings', cb);
};
//# sourceMappingURL=20200227202711-settings.js.map