Better handle group call ring race conditions
This commit is contained in:
parent
629b5c3f6a
commit
a88243f26d
9 changed files with 169 additions and 116 deletions
33
ts/sql/migrations/69-group-call-ring-cancellations.ts
Normal file
33
ts/sql/migrations/69-group-call-ring-cancellations.ts
Normal file
|
@ -0,0 +1,33 @@
|
|||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { Database } from 'better-sqlite3';
|
||||
|
||||
import type { LoggerType } from '../../types/Logging';
|
||||
|
||||
export default function updateToSchemaVersion69(
|
||||
currentVersion: number,
|
||||
db: Database,
|
||||
logger: LoggerType
|
||||
): void {
|
||||
if (currentVersion >= 69) {
|
||||
return;
|
||||
}
|
||||
|
||||
db.transaction(() => {
|
||||
db.exec(
|
||||
`
|
||||
DROP TABLE IF EXISTS groupCallRings;
|
||||
|
||||
CREATE TABLE groupCallRingCancellations(
|
||||
ringId INTEGER PRIMARY KEY,
|
||||
createdAt INTEGER NOT NULL
|
||||
);
|
||||
`
|
||||
);
|
||||
|
||||
db.pragma('user_version = 69');
|
||||
})();
|
||||
|
||||
logger.info('updateToSchemaVersion69: success!');
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue