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