fix: 2.5.108 migration

This commit is contained in:
NGPixel 2020-09-06 15:21:06 -04:00
parent 60f2a2a8d9
commit 0ce63c8ef7
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ const has = require('lodash/has')
exports.up = async knex => { exports.up = async knex => {
// -> Fix 2.5.1 added isEnabled columns for beta users // -> Fix 2.5.1 added isEnabled columns for beta users
const localStrategy = await knex('authentication').where('key', 'local') const localStrategy = await knex('authentication').where('key', 'local')
if (!has(localStrategy, 'isEnabled')) { if (localStrategy && !has(localStrategy, 'isEnabled')) {
await knex.schema await knex.schema
.alterTable('authentication', table => { .alterTable('authentication', table => {
table.boolean('isEnabled').notNullable().defaultTo(true) table.boolean('isEnabled').notNullable().defaultTo(true)

View File

@ -3,7 +3,7 @@ const has = require('lodash/has')
exports.up = async knex => { exports.up = async knex => {
// -> Fix 2.5.1 added isEnabled columns for beta users // -> Fix 2.5.1 added isEnabled columns for beta users
const localStrategy = await knex('authentication').where('key', 'local') const localStrategy = await knex('authentication').where('key', 'local')
if (!has(localStrategy, 'isEnabled')) { if (localStrategy && !has(localStrategy, 'isEnabled')) {
await knex.schema await knex.schema
.alterTable('authentication', table => { .alterTable('authentication', table => {
table.boolean('isEnabled').notNullable().defaultTo(true) table.boolean('isEnabled').notNullable().defaultTo(true)