calckey/packages/backend/migration/1634486652000-user-public-r...

16 lines
391 B
JavaScript
Raw Normal View History

2022-02-28 15:07:03 +00:00
export class userPublicReactions1634486652000 {
2023-04-07 01:56:46 +00:00
constructor() {
this.name = "userPublicReactions1634486652000";
}
async up(queryRunner) {
await queryRunner.query(
`ALTER TABLE "user_profile" ADD "publicReactions" boolean NOT NULL DEFAULT false`,
);
}
async down(queryRunner) {
await queryRunner.query(
`ALTER TABLE "user_profile" DROP COLUMN "publicReactions"`,
);
}
2021-11-11 17:02:25 +00:00
}