Commit 0ce63c8e authored by NGPixel's avatar NGPixel

fix: 2.5.108 migration

parent 60f2a2a8
...@@ -3,7 +3,7 @@ const has = require('lodash/has') ...@@ -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)
......
...@@ -3,7 +3,7 @@ const has = require('lodash/has') ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment