summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1604821689616-delete-auto-watch.js
blob: 4706e8bae9ab1a94b34d91d79da1dcc472049ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class deleteAutoWatch1604821689616 {
    constructor() {
        this.name = 'deleteAutoWatch1604821689616';
    }
    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "autoWatch"`);
    }
    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "user_profile" ADD "autoWatch" boolean NOT NULL DEFAULT false`);
    }
}