Optimize markAllCallHistoryReadSync

This commit is contained in:
Jamie Kyle 2024-07-10 14:10:08 -07:00 committed by GitHub
parent 133f12cfd1
commit 01dda86538
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 215 additions and 37 deletions

View file

@ -84,10 +84,11 @@ import { updateToSchemaVersion1050 } from './1050-group-send-endorsements';
import { updateToSchemaVersion1060 } from './1060-addressable-messages-and-sync-tasks';
import { updateToSchemaVersion1070 } from './1070-attachment-backup';
import { updateToSchemaVersion1080 } from './1080-nondisappearing-addressable';
import { updateToSchemaVersion1090 } from './1090-message-delete-indexes';
import {
updateToSchemaVersion1090,
updateToSchemaVersion1100,
version as MAX_VERSION,
} from './1090-message-delete-indexes';
} from './1100-optimize-mark-call-history-read-in-conversation';
function updateToSchemaVersion1(
currentVersion: number,
@ -2040,6 +2041,7 @@ export const SCHEMA_VERSIONS = [
updateToSchemaVersion1070,
updateToSchemaVersion1080,
updateToSchemaVersion1090,
updateToSchemaVersion1100,
];
export class DBVersionFromFutureError extends Error {