1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-01 01:30:16 -06:00
paricafe/packages/backend/migration/1634902659689-delete-log.js
2022-03-01 00:07:03 +09:00

12 lines
237 B
JavaScript

export class deleteLog1634902659689 {
constructor() {
this.name = 'deleteLog1634902659689';
}
async up(queryRunner) {
await queryRunner.query(`DROP TABLE "log"`);
}
async down(queryRunner) {
}
}