Browse Source

fix: 2.5.108 migration (2)

NGPixel 4 years ago
parent
commit
af054257bd
2 changed files with 3 additions and 2 deletions
  1. 2 1
      server/db/migrations-sqlite/2.5.108.js
  2. 1 1
      server/db/migrations/2.5.108.js

+ 2 - 1
server/db/migrations-sqlite/2.5.108.js

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

+ 1 - 1
server/db/migrations/2.5.108.js

@@ -2,7 +2,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').first()
   if (localStrategy && !has(localStrategy, 'isEnabled')) {
   if (localStrategy && !has(localStrategy, 'isEnabled')) {
     await knex.schema
     await knex.schema
       .alterTable('authentication', table => {
       .alterTable('authentication', table => {