Reorder migrations

This commit is contained in:
Fedor Indutny 2023-01-30 11:55:38 -08:00 committed by GitHub
parent b78235e109
commit 270804d62d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 5 deletions

View file

@ -50,8 +50,9 @@ import updateToSchemaVersion71 from './71-merge-notifications';
import updateToSchemaVersion72 from './72-optimize-call-id-message-lookup';
import updateToSchemaVersion73 from './73-remove-phone-number-discovery';
import updateToSchemaVersion74 from './74-optimize-convo-open';
import updateToSchemaVersion75 from './75-signal-tokenizer';
import updateToSchemaVersion75 from './75-noop';
import updateToSchemaVersion76 from './76-optimize-convo-open-2';
import updateToSchemaVersion77 from './77-signal-tokenizer';
function updateToSchemaVersion1(
currentVersion: number,
@ -1973,6 +1974,7 @@ export const SCHEMA_VERSIONS = [
updateToSchemaVersion74,
updateToSchemaVersion75,
updateToSchemaVersion76,
updateToSchemaVersion77,
];
export function updateSchema(db: Database, logger: LoggerType): void {