mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
415 B
15 lines
415 B
4 years ago
|
const has = require('lodash/has')
|
||
|
|
||
|
exports.up = async knex => {
|
||
|
// -> Fix 2.5.1 added isEnabled columns for beta users
|
||
|
const localStrategy = await knex('authentication').where('key', 'local')
|
||
|
if (!has(localStrategy, 'isEnabled')) {
|
||
|
await knex.schema
|
||
|
.alterTable('authentication', table => {
|
||
|
table.boolean('isEnabled').notNullable().defaultTo(true)
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
exports.down = knex => { }
|