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