Merge pull request #1329 from nymkappa/bugfix/missing-db-version-increment

Increment db version to 10 (26ee4204ac68ee718338db0adb4789cce2976112)
This commit is contained in:
softsimon 2022-03-09 18:53:02 +01:00 committed by GitHub
commit 3f0befc055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ import logger from '../logger';
const sleep = (ms: number) => new Promise(res => setTimeout(res, ms));
class DatabaseMigration {
private static currentVersion = 9;
private static currentVersion = 10;
private queryTimeout = 120000;
private statisticsAddedIndexed = false;