Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
0ce63c8e
Commit
0ce63c8e
authored
Sep 06, 2020
by
NGPixel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 2.5.108 migration
parent
60f2a2a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
2.5.108.js
server/db/migrations-sqlite/2.5.108.js
+1
-1
2.5.108.js
server/db/migrations/2.5.108.js
+1
-1
No files found.
server/db/migrations-sqlite/2.5.108.js
View file @
0ce63c8e
...
...
@@ -3,7 +3,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'
)
if
(
!
has
(
localStrategy
,
'isEnabled'
))
{
if
(
localStrategy
&&
!
has
(
localStrategy
,
'isEnabled'
))
{
await
knex
.
schema
.
alterTable
(
'authentication'
,
table
=>
{
table
.
boolean
(
'isEnabled'
).
notNullable
().
defaultTo
(
true
)
...
...
server/db/migrations/2.5.108.js
View file @
0ce63c8e
...
...
@@ -3,7 +3,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'
)
if
(
!
has
(
localStrategy
,
'isEnabled'
))
{
if
(
localStrategy
&&
!
has
(
localStrategy
,
'isEnabled'
))
{
await
knex
.
schema
.
alterTable
(
'authentication'
,
table
=>
{
table
.
boolean
(
'isEnabled'
).
notNullable
().
defaultTo
(
true
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment