mirror of
https://example.com
synced 2024-11-22 23:36:38 +09:00
15 lines
390 B
JavaScript
15 lines
390 B
JavaScript
export class userPublicReactions1634486652000 {
|
|
constructor() {
|
|
this.name = "userPublicReactions1634486652000";
|
|
}
|
|
async up(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "user_profile" ADD "publicReactions" boolean NOT NULL DEFAULT true`,
|
|
);
|
|
}
|
|
async down(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "user_profile" DROP COLUMN "publicReactions"`,
|
|
);
|
|
}
|
|
}
|