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