summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1669138716634-whetherPushNotifyToSendReadMessage.js
blob: 2265b006170deabafe129b9f5a69d66d8acb3f5e (plain)
1
2
3
4
5
6
7
8
9
10
11
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"`);
    }
}