2024-08-21 09:03:28 -07:00
|
|
|
// Copyright 2024 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
2025-03-12 14:45:54 -07:00
|
|
|
import type { Database } from '@signalapp/sqlcipher';
|
2024-08-21 09:03:28 -07:00
|
|
|
|
2025-08-06 10:32:08 -07:00
|
|
|
export default function updateToSchemaVersion1150(db: Database): void {
|
|
|
|
db.exec(`
|
|
|
|
-- All future conversations will start from '1'
|
|
|
|
ALTER TABLE conversations
|
|
|
|
ADD COLUMN expireTimerVersion INTEGER NOT NULL DEFAULT 1;
|
2024-08-21 09:03:28 -07:00
|
|
|
|
2025-08-06 10:32:08 -07:00
|
|
|
-- All current conversations will start from '2'
|
|
|
|
UPDATE conversations SET expireTimerVersion = 2;
|
|
|
|
`);
|
2024-08-21 09:03:28 -07:00
|
|
|
}
|