feat: add DB migration to add the hash of T&C

This commit is contained in:
André Sá 2022-04-14 16:59:16 +01:00
parent 469f38b768
commit 0213ceb7fe

View file

@ -0,0 +1,11 @@
const { saveConfig } = require('../lib/new-settings-loader')
exports.up = function (next) {
return saveConfig({})
.then(next)
.catch(next)
}
exports.down = function (next) {
next()
}