2024-04-07 05:38:52 +02:00
|
|
|
import type { MigrationInterface, QueryRunner } from "typeorm";
|
2024-03-03 05:20:32 +01:00
|
|
|
|
|
|
|
export class AddObjectStorageUseProxy1586624197029
|
|
|
|
implements MigrationInterface
|
|
|
|
{
|
|
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "meta" ADD "objectStorageUseProxy" boolean NOT NULL DEFAULT true`,
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "meta" DROP COLUMN "objectStorageUseProxy"`,
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|