This commit is contained in:
syuilo 2023-10-06 17:40:46 +09:00
parent 481ca4ec03
commit 8c663f65a8
2 changed files with 17 additions and 2 deletions

View file

@ -0,0 +1,15 @@
/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class CleanUp1696581429196 {
name = 'CleanUp1696581429196'
async up(queryRunner) {
await queryRunner.query(`DROP TABLE IF EXISTS "muted_note"`);
}
async down(queryRunner) {
}
}