signal-desktop/ts/sql/migrations/69-group-call-ring-cancellations.ts

17 lines
399 B
TypeScript
Raw Normal View History

// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2025-03-12 14:45:54 -07:00
import type { Database } from '@signalapp/sqlcipher';
2025-08-06 10:32:08 -07:00
export default function updateToSchemaVersion69(db: Database): void {
db.exec(
`
DROP TABLE IF EXISTS groupCallRings;
2025-08-06 10:32:08 -07:00
CREATE TABLE groupCallRingCancellations(
ringId INTEGER PRIMARY KEY,
createdAt INTEGER NOT NULL
);
2025-08-06 10:32:08 -07:00
`
);
}