summaryrefslogtreecommitdiff
path: root/migration/1597385880794-add-sensitive-index.ts
blob: ff6251ac0a7d3e0481804d927fcae8811a533efc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import {MigrationInterface, QueryRunner} from "typeorm";

export class addSensitiveIndex1597385880794 implements MigrationInterface {
    name = 'addSensitiveIndex1597385880794'

    public async up(queryRunner: QueryRunner): Promise<void> {
        await queryRunner.query(`CREATE INDEX "IDX_a7eba67f8b3fa27271e85d2e26" ON "drive_file" ("isSensitive") `);
    }

    public async down(queryRunner: QueryRunner): Promise<void> {
        await queryRunner.query(`DROP INDEX "IDX_a7eba67f8b3fa27271e85d2e26"`);
    }

}