summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1629778475000-deepl-integration2.js
blob: 699f06c76820fc2207c41e08105c5caa953f206c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class deeplIntegration21629778475000 {
    constructor() {
        this.name = 'deeplIntegration21629778475000';
    }
    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "meta" ADD "deeplIsPro" boolean NOT NULL DEFAULT false`);
    }
    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "deeplIsPro"`);
    }
}