mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
21 lines
554 B
JavaScript
21 lines
554 B
JavaScript
export class AnnouncementPopup1688845537045 {
|
|
name = "AnnouncementPopup1688845537045";
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "announcement" ADD "showPopup" boolean NOT NULL DEFAULT false`,
|
|
);
|
|
await queryRunner.query(
|
|
`ALTER TABLE "announcement" ADD "isGoodNews" boolean NOT NULL DEFAULT false`,
|
|
);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "announcement" DROP COLUMN "isGoodNews"`,
|
|
);
|
|
await queryRunner.query(
|
|
`ALTER TABLE "announcement" DROP COLUMN "showPopup"`,
|
|
);
|
|
}
|
|
}
|