Commit af054257 authored by NGPixel's avatar NGPixel

fix: 2.5.108 migration (2)

parent 0ce63c8e
......@@ -2,7 +2,8 @@ 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')
const localStrategy = await knex('authentication').where('key', 'local').first()
console.info(localStrategy)
if (localStrategy && !has(localStrategy, 'isEnabled')) {
await knex.schema
.alterTable('authentication', table => {
......
......@@ -2,7 +2,7 @@ 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')
const localStrategy = await knex('authentication').where('key', 'local').first()
if (localStrategy && !has(localStrategy, 'isEnabled')) {
await knex.schema
.alterTable('authentication', table => {
......
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