wip: notification muting

This commit is contained in:
オスカー、 2024-11-06 18:37:39 +09:00
parent 4671fc4139
commit ab84c9afa0
Signed by: SWREI
GPG Key ID: 139D6573F92DA9F7

View File

@ -0,0 +1,11 @@
export class NotificationMuting1730885274028 {
name = 'NotificationMuting1730885274028'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "muting" ADD "withNotification" boolean NOT NULL DEFAULT true`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "muting" DROP COLUMN "withNotification"`);
}
}