egirlskey/packages/backend/migration/1696581429196-clean-up.js

16 lines
318 B
JavaScript
Raw Permalink Normal View History

2023-10-06 08:40:46 +00:00
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
2023-10-06 08:40:46 +00:00
* 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) {
}
}