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