iceshrimp/packages/backend/src/migration/1580543501339-v12-13.ts

16 lines
473 B
TypeScript
Raw Normal View History

import { MigrationInterface, QueryRunner } from "typeorm";
export class v12131580543501339 implements MigrationInterface {
2023-04-07 03:56:46 +02:00
constructor() {
this.name = "v12131580543501339";
}
async up(queryRunner: QueryRunner): Promise<void> {
2023-04-07 03:56:46 +02:00
await queryRunner.query(
`CREATE INDEX "IDX_NOTE_TAGS" ON "note" USING gin ("tags")`,
undefined,
);
}
async down(queryRunner: QueryRunner): Promise<void> {
2023-04-07 03:56:46 +02:00
await queryRunner.query(`DROP INDEX "IDX_NOTE_TAGS"`, undefined);
}
2021-11-11 18:02:25 +01:00
}