mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-05 16:49:17 +00:00
19 lines
693 B
JavaScript
19 lines
693 B
JavaScript
/*
|
|
* SPDX-FileCopyrightText: hazelnoot and other Sharkey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export class CreateIDXNoteForTimelines1748991828473 {
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`
|
|
create index "IDX_note_for_timelines"
|
|
on "note" ("id" desc, "channelId", "visibility", "userHost")
|
|
include ("userId", "userHost", "replyId", "replyUserId", "replyUserHost", "renoteId", "renoteUserId", "renoteUserHost")
|
|
NULLS NOT DISTINCT`);
|
|
await queryRunner.query(`comment on index "IDX_note_for_timelines" is 'Covering index for timeline queries'`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`DROP INDEX "IDX_note_for_timelines"`);
|
|
}
|
|
}
|