Partially Revert 'refactor: noteテーブルのインデックス整理と配列カラムへのクエリでインデックスを使うように'

This reverts commit d92aaf81c4 partially.

Noteモデルの一部のB-TREEインデックスの定義を残すように
This commit is contained in:
まっちゃとーにゅ
2024-01-16 05:53:58 +09:00
parent 47eaf0b446
commit 7986f934e6
2 changed files with 10 additions and 14 deletions

View File

@@ -11,6 +11,10 @@ import { MiChannel } from './Channel.js';
import type { MiDriveFile } from './DriveFile.js';
@Entity('note')
@Index('IDX_NOTE_TAGS', { synchronize: false })
@Index('IDX_NOTE_MENTIONS', { synchronize: false })
@Index('IDX_NOTE_FILE_IDS', { synchronize: false })
@Index('IDX_NOTE_VISIBLE_USER_IDS', { synchronize: false })
export class MiNote {
@PrimaryColumn(id())
public id: string;
@@ -137,7 +141,7 @@ export class MiNote {
})
public url: string | null;
@Index('IDX_NOTE_FILE_IDS', { synchronize: false })
@Index()
@Column({
...id(),
array: true, default: '{}',
@@ -149,14 +153,14 @@ export class MiNote {
})
public attachedFileTypes: string[];
@Index('IDX_NOTE_VISIBLE_USER_IDS', { synchronize: false })
@Index()
@Column({
...id(),
array: true, default: '{}',
})
public visibleUserIds: MiUser['id'][];
@Index('IDX_NOTE_MENTIONS', { synchronize: false })
@Index()
@Column({
...id(),
array: true, default: '{}',
@@ -178,7 +182,7 @@ export class MiNote {
})
public emojis: string[];
@Index('IDX_NOTE_TAGS', { synchronize: false })
@Index()
@Column('varchar', {
length: 128, array: true, default: '{}',
})