fix: migration error for new installs
This commit is contained in:
14
server/db/migrations-sqlite/2.5.108.js
Normal file
14
server/db/migrations-sqlite/2.5.108.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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 => { }
|
Reference in New Issue
Block a user