1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-04 17:58:47 +09:00
misskey/packages/backend/migration/1680582195041-cleanup.js
2024-02-13 15:59:27 +00:00

17 lines
307 B
JavaScript

/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class cleanup1680582195041 {
name = 'cleanup1680582195041'
async up(queryRunner) {
await queryRunner.query(`DROP TABLE "notification" `);
}
async down(queryRunner) {
}
}