mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-26 13:20:48 +00:00
Order unprocessed envelopes by receivedAtCounter
This commit is contained in:
40
ts/sql/migrations/60-update-expiring-index.ts
Normal file
40
ts/sql/migrations/60-update-expiring-index.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
// Copyright 2021-2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { Database } from 'better-sqlite3';
|
||||
|
||||
import type { LoggerType } from '../../types/Logging';
|
||||
|
||||
// TODO: DESKTOP-3694
|
||||
export default function updateToSchemaVersion60(
|
||||
currentVersion: number,
|
||||
db: Database,
|
||||
logger: LoggerType
|
||||
): void {
|
||||
if (currentVersion >= 60) {
|
||||
return;
|
||||
}
|
||||
|
||||
db.transaction(() => {
|
||||
db.exec(
|
||||
`
|
||||
DROP INDEX expiring_message_by_conversation_and_received_at;
|
||||
|
||||
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';
|
||||
`
|
||||
);
|
||||
|
||||
db.pragma('user_version = 60');
|
||||
})();
|
||||
|
||||
logger.info('updateToSchemaVersion60: success!');
|
||||
}
|
||||
Reference in New Issue
Block a user