mirror of https://github.com/requarks/wiki
fix: new install local auth not enabled (#2375)
parent
7fdf8ab3f9
commit
794ecc6ef6
@ -0,0 +1,6 @@
|
|||||||
|
exports.up = async knex => {
|
||||||
|
// -> Fix 2.5.117 new installations without isEnabled on local auth (#2382)
|
||||||
|
await knex('authentication').where('key', 'local').update({ isEnabled: true })
|
||||||
|
}
|
||||||
|
|
||||||
|
exports.down = knex => { }
|
@ -0,0 +1,6 @@
|
|||||||
|
exports.up = async knex => {
|
||||||
|
// -> Fix 2.5.117 new installations without isEnabled on local auth (#2382)
|
||||||
|
await knex('authentication').where('key', 'local').update({ isEnabled: true })
|
||||||
|
}
|
||||||
|
|
||||||
|
exports.down = knex => { }
|
Loading…
Reference in new issue