remove IDX_instance_host_filters as it slowed down queries more than it helped

This commit is contained in:
Hazelnoot 2025-06-06 23:35:25 -04:00
parent 24b0d7a376
commit d0cf1cc15f
2 changed files with 17 additions and 1 deletions

View file

@ -7,7 +7,6 @@ import { Entity, PrimaryColumn, Index, Column } from 'typeorm';
import { id } from './util/id.js';
@Index('IDX_instance_host_key', { synchronize: false }) // ((lower(reverse("host"::text)) || '.'::text)
@Index('IDX_instance_host_filters', { synchronize: false }) // ("host", "isBlocked", "isSilenced", "isMediaSilenced", "isAllowListed", "isBubbled", "suspensionState")
@Entity('instance')
export class MiInstance {
@PrimaryColumn(id())