iceshrimp-legacy/packages/backend/migration/1586624197029-AddObjectStorageUseProxy.js
Kainoa Kanter 7fb130b06e formatting
2023-04-06 18:56:46 -07:00

18 lines
424 B
JavaScript

export class AddObjectStorageUseProxy1586624197029 {
constructor() {
this.name = "AddObjectStorageUseProxy1586624197029";
}
async up(queryRunner) {
await queryRunner.query(
`ALTER TABLE "meta" ADD "objectStorageUseProxy" boolean NOT NULL DEFAULT true`,
undefined,
);
}
async down(queryRunner) {
await queryRunner.query(
`ALTER TABLE "meta" DROP COLUMN "objectStorageUseProxy"`,
undefined,
);
}
}