1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/migrations/20200928195238-add-project-id-to-features.js

18 lines
314 B
JavaScript
Raw Normal View History

'use strict';
exports.up = function (db, cb) {
return db.addColumn(
'features',
'project',
{
type: 'string',
defaultValue: 'default',
},
cb,
);
};
exports.down = function (db, cb) {
return db.removeColumn('features', 'project', cb);
};