wikijs-fork/server/db/migrations/2.5.108.js

15 lines
432 B
JavaScript
Raw Normal View History

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
const localStrategy = await knex('authentication').where('key', 'local')
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 => { }