1
0
Fork 1
mirror of https://example.com synced 2024-11-23 06:06:38 +09:00
firefish/packages/backend/migration/1597230137744-objectStorageSetPublicRead.js
2023-07-20 04:17:05 +09:00

15 lines
411 B
JavaScript

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