summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1669138716634-whetherPushNotifyToSendReadMessage.js
blob: a317468ac970e10698225c9dfa0f04388fa5fd40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-FileCopyrightText: syuilo and other misskey contributors
 * 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"`);
    }
}