Archived
1
0
This repository has been archived on 2025-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
mi.moris.day/packages/backend/migration/1611547387175-objectStorageS3ForcePathStyle.js
2022-03-01 00:07:03 +09:00

14 lines
444 B
JavaScript

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"`);
}
}