blob: e4d3c0e8ec68b95400fc5bbb172a17395990e27c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export class objectStorageS3ForcePathStyle1611547387175 {
constructor() {
this.name = 'objectStorageS3ForcePathStyle1611547387175';
}
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" ADD "objectStorageS3ForcePathStyle" boolean NOT NULL DEFAULT true`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "objectStorageS3ForcePathStyle"`);
}
}
|