Synchronous delete call link
This commit is contained in:
parent
e60df56500
commit
42cc5e0013
23 changed files with 443 additions and 135 deletions
28
ts/sql/migrations/1230-call-links-admin-key-index.ts
Normal file
28
ts/sql/migrations/1230-call-links-admin-key-index.ts
Normal file
|
@ -0,0 +1,28 @@
|
|||
// Copyright 2024 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
import type { Database } from '@signalapp/better-sqlite3';
|
||||
import type { LoggerType } from '../../types/Logging';
|
||||
|
||||
export const version = 1230;
|
||||
|
||||
export function updateToSchemaVersion1230(
|
||||
currentVersion: number,
|
||||
db: Database,
|
||||
logger: LoggerType
|
||||
): void {
|
||||
if (currentVersion >= 1230) {
|
||||
return;
|
||||
}
|
||||
|
||||
db.transaction(() => {
|
||||
db.exec(`
|
||||
DROP INDEX IF EXISTS callLinks_adminKey;
|
||||
|
||||
CREATE INDEX callLinks_adminKey
|
||||
ON callLinks (adminKey);
|
||||
`);
|
||||
|
||||
db.pragma('user_version = 1230');
|
||||
})();
|
||||
logger.info('updateToSchemaVersion1230: success!');
|
||||
}
|
|
@ -98,10 +98,11 @@ import { updateToSchemaVersion1180 } from './1180-add-attachment-download-source
|
|||
import { updateToSchemaVersion1190 } from './1190-call-links-storage';
|
||||
import { updateToSchemaVersion1200 } from './1200-attachment-download-source-index';
|
||||
import { updateToSchemaVersion1210 } from './1210-call-history-started-id';
|
||||
import { updateToSchemaVersion1220 } from './1220-blob-sessions';
|
||||
import {
|
||||
updateToSchemaVersion1220,
|
||||
updateToSchemaVersion1230,
|
||||
version as MAX_VERSION,
|
||||
} from './1220-blob-sessions';
|
||||
} from './1230-call-links-admin-key-index';
|
||||
|
||||
function updateToSchemaVersion1(
|
||||
currentVersion: number,
|
||||
|
@ -2069,6 +2070,7 @@ export const SCHEMA_VERSIONS = [
|
|||
updateToSchemaVersion1200,
|
||||
updateToSchemaVersion1210,
|
||||
updateToSchemaVersion1220,
|
||||
updateToSchemaVersion1230,
|
||||
];
|
||||
|
||||
export class DBVersionFromFutureError extends Error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue