signal-desktop/ts/sql/migrations/1130-isStory-index.ts

14 lines
386 B
TypeScript
Raw Normal View History

2024-07-30 11:29:35 -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-07-30 11:29:35 -07:00
2025-08-06 10:32:08 -07:00
export default function updateToSchemaVersion1130(db: Database): void {
// This is to improve the performance of getAllStories
db.exec(`
CREATE INDEX messages_isStory
ON messages(received_at, sent_at)
WHERE isStory = 1;
`);
2024-07-30 11:29:35 -07:00
}