mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
ff7be7696c
Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
18 lines
307 B
JavaScript
18 lines
307 B
JavaScript
'use strict';
|
|
|
|
exports.up = function (db, cb) {
|
|
return db.addColumn(
|
|
'features',
|
|
'stale',
|
|
{
|
|
type: 'boolean',
|
|
defaultValue: false,
|
|
},
|
|
cb,
|
|
);
|
|
};
|
|
|
|
exports.down = function (db, cb) {
|
|
return db.removeColumn('features', 'stale', cb);
|
|
};
|