11 lines
197 B
JavaScript
11 lines
197 B
JavaScript
const { saveConfig } = require('../lib/new-settings-loader')
|
|
|
|
exports.up = function (next) {
|
|
return saveConfig({})
|
|
.then(next)
|
|
.catch(next)
|
|
}
|
|
|
|
exports.down = function (next) {
|
|
next()
|
|
}
|