Normalize messages table

This commit is contained in:
Fedor Indutny 2025-01-16 13:34:35 -08:00 committed by GitHub
parent 9bec59b70a
commit 630a1fcc89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 490 additions and 240 deletions

View file

@ -102,10 +102,11 @@ import { updateToSchemaVersion1220 } from './1220-blob-sessions';
import { updateToSchemaVersion1230 } from './1230-call-links-admin-key-index';
import { updateToSchemaVersion1240 } from './1240-defunct-call-links-table';
import { updateToSchemaVersion1250 } from './1250-defunct-call-links-storage';
import { updateToSchemaVersion1260 } from './1260-sync-tasks-rowid';
import {
updateToSchemaVersion1260,
updateToSchemaVersion1270,
version as MAX_VERSION,
} from './1260-sync-tasks-rowid';
} from './1270-normalize-messages';
import { DataWriter } from '../Server';
function updateToSchemaVersion1(
@ -2078,6 +2079,7 @@ export const SCHEMA_VERSIONS = [
updateToSchemaVersion1240,
updateToSchemaVersion1250,
updateToSchemaVersion1260,
updateToSchemaVersion1270,
];
export class DBVersionFromFutureError extends Error {