mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-11-29 07:18:08 +09:00
16 lines
403 B
JavaScript
16 lines
403 B
JavaScript
export class whetherPushNotifyToSendReadMessage1669138716634 {
|
|
name = "whetherPushNotifyToSendReadMessage1669138716634";
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "sw_subscription" ADD "sendReadMessage" boolean NOT NULL DEFAULT false`,
|
|
);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "sw_subscription" DROP COLUMN "sendReadMessage"`,
|
|
);
|
|
}
|
|
}
|