Fix sourceDevice column type in unprocessed

This commit is contained in:
Fedor Indutny 2025-01-22 11:04:28 -08:00 committed by GitHub
parent 649d24b623
commit 96718464ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 119 additions and 5 deletions

View file

@ -104,10 +104,11 @@ import { updateToSchemaVersion1240 } from './1240-defunct-call-links-table';
import { updateToSchemaVersion1250 } from './1250-defunct-call-links-storage';
import { updateToSchemaVersion1260 } from './1260-sync-tasks-rowid';
import { updateToSchemaVersion1270 } from './1270-normalize-messages';
import { updateToSchemaVersion1280 } from './1280-blob-unprocessed';
import {
updateToSchemaVersion1280,
updateToSchemaVersion1290,
version as MAX_VERSION,
} from './1280-blob-unprocessed';
} from './1290-int-unprocessed-source-device';
import { DataWriter } from '../Server';
function updateToSchemaVersion1(
@ -2082,6 +2083,7 @@ export const SCHEMA_VERSIONS = [
updateToSchemaVersion1260,
updateToSchemaVersion1270,
updateToSchemaVersion1280,
updateToSchemaVersion1290,
];
export class DBVersionFromFutureError extends Error {