summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1669138716634-whetherPushNotifyToSendReadMessage.js
blob: 431241897d1cbf03b46ccc5823af42d57e9bd412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-FileCopyrightText: syuilo and misskey-project
 * SPDX-License-Identifier: AGPL-3.0-only
 */

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"`);
    }
}