lamassu-server/migrations/1649944954805-terms-and-conditions-hash.js
2022-04-26 15:39:31 +01:00

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()
}