Merge pull request #12618 from nupplaphil/no_config_purge

Don't wipe `config` or `addon` data
This commit is contained in:
Hypolite Petovan 2023-01-04 22:36:51 -05:00 committed by GitHub
commit 0d2da55dfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1192,7 +1192,7 @@ function update_1508()
$newConfig->commit();
return DBA::e("TRUNCATE TABLE `config`") ? Update::SUCCESS : Update::FAILED;
return Update::SUCCESS;
}
function update_1509()
@ -1210,5 +1210,5 @@ function update_1509()
$newConfig->commit();
return DBA::e("TRUNCATE TABLE `addon`") ? Update::SUCCESS : Update::FAILED;
return Update::SUCCESS;
}