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

13 lines
237 B
JavaScript
Raw Normal View History

2022-02-28 09:07:03 -06:00
export class deleteLog1634902659689 {
2021-11-11 11:02:25 -06:00
constructor() {
this.name = 'deleteLog1634902659689';
}
async up(queryRunner) {
await queryRunner.query(`DROP TABLE "log"`);
}
async down(queryRunner) {
}
}