Files
Desktop/ts/sql/migrations/1130-isStory-index.std.ts
Fedor Indutny 44076ece79 Rename files
2025-10-16 23:45:44 -07:00

14 lines
386 B
TypeScript

// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { Database } from '@signalapp/sqlcipher';
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;
`);
}