2023-04-04 05:36:59 +02:00
|
|
|
export class whetherPushNotifyToSendReadMessage1669138716634 {
|
2023-04-07 03:56:46 +02:00
|
|
|
name = "whetherPushNotifyToSendReadMessage1669138716634";
|
2023-04-04 05:36:59 +02:00
|
|
|
|
2023-04-07 03:56:46 +02:00
|
|
|
async up(queryRunner) {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "sw_subscription" ADD "sendReadMessage" boolean NOT NULL DEFAULT false`,
|
|
|
|
);
|
|
|
|
}
|
2023-04-04 05:36:59 +02:00
|
|
|
|
2023-04-07 03:56:46 +02:00
|
|
|
async down(queryRunner) {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "sw_subscription" DROP COLUMN "sendReadMessage"`,
|
|
|
|
);
|
|
|
|
}
|
2023-04-04 05:36:59 +02:00
|
|
|
}
|