1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-01 00:20:16 -06:00
paricafe/packages/backend/migration/1696581429196-clean-up.js

16 lines
318 B
JavaScript
Raw Normal View History

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