mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 12:13:48 +01: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"`,
|
|
);
|
|
}
|
|
}
|