09d3449309
feat: ドライブの写真をプロフィールから見れなくする
10 lines
352 B
JavaScript
10 lines
352 B
JavaScript
export class FeatHideProfileFile1710146785086 {
|
|
name = 'FeatHideProfileFile1710146785086'
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD "hideProfileFiles" boolean NOT NULL DEFAULT false`);
|
|
}
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "hideProfileFiles"`);
|
|
}
|
|
}
|