Enable attachment backup uploading

This commit is contained in:
trevor-signal 2024-05-29 19:46:43 -04:00 committed by GitHub
parent 94a262b799
commit 4254356812
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 2054 additions and 534 deletions

View file

@ -81,10 +81,11 @@ import { updateToSchemaVersion1020 } from './1020-self-merges';
import { updateToSchemaVersion1030 } from './1030-unblock-event';
import { updateToSchemaVersion1040 } from './1040-undownloaded-backed-up-media';
import { updateToSchemaVersion1050 } from './1050-group-send-endorsements';
import { updateToSchemaVersion1060 } from './1060-addressable-messages-and-sync-tasks';
import {
updateToSchemaVersion1060,
updateToSchemaVersion1070,
version as MAX_VERSION,
} from './1060-addressable-messages-and-sync-tasks';
} from './1070-attachment-backup';
function updateToSchemaVersion1(
currentVersion: number,
@ -2034,6 +2035,7 @@ export const SCHEMA_VERSIONS = [
updateToSchemaVersion1040,
updateToSchemaVersion1050,
updateToSchemaVersion1060,
updateToSchemaVersion1070,
];
export class DBVersionFromFutureError extends Error {