mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 06:33:09 +02:00
c88902e640
Co-authored-by: ybw2016v <dogcraft@126.com>
14 lines
567 B
TypeScript
14 lines
567 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class objectStorageS3ForcePathStyle1611547387175 implements MigrationInterface {
|
|
name = 'objectStorageS3ForcePathStyle1611547387175'
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "meta" ADD "objectStorageS3ForcePathStyle" boolean NOT NULL DEFAULT true`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "objectStorageS3ForcePathStyle"`);
|
|
}
|
|
|
|
}
|