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