Add unblocked timeline event

This commit is contained in:
Jamie Kyle 2024-04-12 10:07:57 -07:00 committed by GitHub
parent 92eb036196
commit ad8020848f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 333 additions and 10 deletions

View file

@ -77,10 +77,11 @@ import { updateToSchemaVersion980 } from './980-reaction-timestamp';
import { updateToSchemaVersion990 } from './990-phone-number-sharing';
import { updateToSchemaVersion1000 } from './1000-mark-unread-call-history-messages-as-unseen';
import { updateToSchemaVersion1010 } from './1010-call-links-table';
import { updateToSchemaVersion1020 } from './1020-self-merges';
import {
version as MAX_VERSION,
updateToSchemaVersion1020,
} from './1020-self-merges';
updateToSchemaVersion1030,
} from './1030-unblock-event';
function updateToSchemaVersion1(
currentVersion: number,
@ -2025,6 +2026,7 @@ export const SCHEMA_VERSIONS = [
updateToSchemaVersion1000,
updateToSchemaVersion1010,
updateToSchemaVersion1020,
updateToSchemaVersion1030,
];
export class DBVersionFromFutureError extends Error {