Fix broken login after upgrade (#80)

* Added users(backend) field update

* dbVersion bumped to 6
This commit is contained in:
GAZDOWN 2018-09-15 12:21:24 +02:00 committed by Lukas Metzger
parent 328d645838
commit 091f27e9e5
2 changed files with 4 additions and 1 deletions

View File

@ -38,7 +38,7 @@ $defaultConfig = [
]
],
'proxys' => [],
'dbVersion' => 5
'dbVersion' => 6
];
if (file_exists('../config/ConfigOverride.php')) {

View File

@ -0,0 +1,3 @@
UPDATE users SET backend='native' WHERE backend='';
UPDATE options SET value=6 WHERE name='schema_version';