mirror of
https://github.com/MisskeyIO/misskey
synced 2024-11-24 07:06:22 +09:00
7986f934e6
This reverts commit d92aaf81c4
partially.
Noteモデルの一部のB-TREEインデックスの定義を残すように
17 lines
477 B
JavaScript
17 lines
477 B
JavaScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export class OptimizeNoteIndexForArrayColumns1705222772858 {
|
|
name = 'OptimizeNoteIndexForArrayColumns1705222772858'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`CREATE INDEX "IDX_NOTE_FILE_IDS" ON "note" using gin ("fileIds")`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`DROP INDEX "IDX_NOTE_FILE_IDS"`);
|
|
}
|
|
}
|