replace index on note.userHost

This commit is contained in:
Hazelnoot 2025-06-03 18:43:42 -04:00
parent 5236d30ec5
commit 9d45041bd8
2 changed files with 23 additions and 1 deletions

View file

@ -12,6 +12,7 @@ import { MiChannel } from './Channel.js';
import type { MiDriveFile } from './DriveFile.js';
@Index('IDX_724b311e6f883751f261ebe378', ['userId', 'id'])
@Index('IDX_note_userHost_id', { synchronize: false }) // (userHost, id desc)
@Entity('note')
export class MiNote {
@PrimaryColumn(id())
@ -216,7 +217,6 @@ export class MiNote {
public processErrors: string[] | null;
//#region Denormalized fields
@Index()
@Column('varchar', {
length: 128, nullable: true,
comment: '[Denormalized]',