15 lines
440 B
JavaScript
Raw Normal View History

2020-09-05 23:47:41 -04:00
const has = require('lodash/has')
exports.up = async knex => {
// -> Fix 2.5.1 added isEnabled columns for beta users
2020-09-06 15:36:51 -04:00
const localStrategy = await knex('authentication').where('key', 'local').first()
2020-09-06 15:21:06 -04:00
if (localStrategy && !has(localStrategy, 'isEnabled')) {
2020-09-05 23:47:41 -04:00
await knex.schema
.alterTable('authentication', table => {
table.boolean('isEnabled').notNullable().defaultTo(true)
})
}
}
exports.down = knex => { }