summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1606191203881-no-crawle.js
blob: b9ada4354edfcb4d4285dab70c04827d38618202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export class noCrawle1606191203881 {
    constructor() {
        this.name = 'noCrawle1606191203881';
    }
    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "user_profile" ADD "noCrawle" boolean NOT NULL DEFAULT false`);
        await queryRunner.query(`COMMENT ON COLUMN "user_profile"."noCrawle" IS 'Whether reject index by crawler.'`);
    }
    async down(queryRunner) {
        await queryRunner.query(`COMMENT ON COLUMN "user_profile"."noCrawle" IS 'Whether reject index by crawler.'`);
        await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "noCrawle"`);
    }
}