iceshrimp/packages/backend/src/migration/1702744857694-user-issuspended-idx.ts
Laura Hausmann 52b0c6c8f8
[backend] Add a new index to the user table for faster notifications queries
This should drastically improve performance of the i/notification endpoint
2023-12-16 17:43:15 +01:00

14 lines
547 B
TypeScript

import { MigrationInterface, QueryRunner } from "typeorm";
export class UserIssuspendedIdx1702744857694 implements MigrationInterface {
name = 'UserIssuspendedIdx1702744857694'
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`CREATE INDEX IF NOT EXISTS "IDX_8977c6037a7bc2cb0c84b6d4db" ON "user" ("isSuspended")`);
}
public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`DROP INDEX IF EXISTS "public"."IDX_8977c6037a7bc2cb0c84b6d4db"`);
}
}