Support delete for call links

Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
This commit is contained in:
Jamie Kyle 2024-08-06 12:29:13 -07:00 committed by GitHub
parent 11fed7e7f8
commit 9a9f9495f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
67 changed files with 853 additions and 345 deletions

View file

@ -89,10 +89,11 @@ import { updateToSchemaVersion1090 } from './1090-message-delete-indexes';
import { updateToSchemaVersion1100 } from './1100-optimize-mark-call-history-read-in-conversation';
import { updateToSchemaVersion1110 } from './1110-sticker-local-key';
import { updateToSchemaVersion1120 } from './1120-messages-foreign-keys-indexes';
import { updateToSchemaVersion1130 } from './1130-isStory-index';
import {
updateToSchemaVersion1130,
updateToSchemaVersion1140,
version as MAX_VERSION,
} from './1130-isStory-index';
} from './1140-call-links-deleted-column';
function updateToSchemaVersion1(
currentVersion: number,
@ -2050,6 +2051,7 @@ export const SCHEMA_VERSIONS = [
updateToSchemaVersion1110,
updateToSchemaVersion1120,
updateToSchemaVersion1130,
updateToSchemaVersion1140,
];
export class DBVersionFromFutureError extends Error {