18 lines
487 B
JavaScript
18 lines
487 B
JavaScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export class FixRenoteMuting1690417561185 {
|
|
name = 'FixRenoteMuting1690417561185'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`DELETE FROM "renote_muting" WHERE "muteeId" NOT IN (SELECT "id" FROM "user")`);
|
|
await queryRunner.query(`DELETE FROM "renote_muting" WHERE "muterId" NOT IN (SELECT "id" FROM "user")`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
|
|
}
|
|
}
|