2023-07-20 04:17:05 +09:00
|
|
|
export class userPublicReactions1634486652000 {
|
|
|
|
constructor() {
|
|
|
|
this.name = "userPublicReactions1634486652000";
|
|
|
|
}
|
|
|
|
async up(queryRunner) {
|
|
|
|
await queryRunner.query(
|
2023-10-16 03:04:33 +09:00
|
|
|
`ALTER TABLE "user_profile" ADD "publicReactions" boolean NOT NULL DEFAULT true`,
|
2023-07-20 04:17:05 +09:00
|
|
|
);
|
|
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "user_profile" DROP COLUMN "publicReactions"`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|