Move receipt queues into conversation queue to handle 428s

This commit is contained in:
Jamie Kyle
2023-02-06 09:24:34 -08:00
committed by GitHub
parent 3776a04c0b
commit 2bbcc4676e
20 changed files with 981 additions and 223 deletions

View File

@@ -53,6 +53,7 @@ import updateToSchemaVersion74 from './74-optimize-convo-open';
import updateToSchemaVersion75 from './75-noop';
import updateToSchemaVersion76 from './76-optimize-convo-open-2';
import updateToSchemaVersion77 from './77-signal-tokenizer';
import updateToSchemaVersion78 from './78-merge-receipt-jobs';
function updateToSchemaVersion1(
currentVersion: number,
@@ -1975,6 +1976,7 @@ export const SCHEMA_VERSIONS = [
updateToSchemaVersion75,
updateToSchemaVersion76,
updateToSchemaVersion77,
updateToSchemaVersion78,
];
export function updateSchema(db: Database, logger: LoggerType): void {