2023-01-03 11:55:46 -08:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
2022-06-02 18:09:13 -07:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2025-03-12 14:45:54 -07:00
|
|
|
import type { Database } from '@signalapp/sqlcipher';
|
2022-06-02 18:09:13 -07:00
|
|
|
|
2022-06-10 09:09:21 -07:00
|
|
|
// TODO: DESKTOP-3694
|
2025-08-06 10:32:08 -07:00
|
|
|
export default function updateToSchemaVersion60(db: Database): void {
|
|
|
|
db.exec(
|
|
|
|
`
|
|
|
|
DROP INDEX expiring_message_by_conversation_and_received_at;
|
2022-06-02 18:09:13 -07:00
|
|
|
|
2025-08-06 10:32:08 -07:00
|
|
|
CREATE INDEX expiring_message_by_conversation_and_received_at
|
|
|
|
ON messages
|
|
|
|
(
|
|
|
|
conversationId,
|
|
|
|
storyId,
|
|
|
|
expirationStartTimestamp,
|
|
|
|
expireTimer,
|
|
|
|
received_at
|
|
|
|
)
|
|
|
|
WHERE isStory IS 0 AND type IS 'incoming';
|
|
|
|
`
|
|
|
|
);
|
2022-06-02 18:09:13 -07:00
|
|
|
}
|