データベースにログを保存するのを廃止

Close #7878
This commit is contained in:
syuilo 2021-10-22 20:41:15 +09:00
parent 81a0ee4b2d
commit 632af91878
9 changed files with 17 additions and 295 deletions

View file

@ -0,0 +1,13 @@
import {MigrationInterface, QueryRunner} from "typeorm";
export class deleteLog1634902659689 implements MigrationInterface {
name = 'deleteLog1634902659689'
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`DROP TABLE "log"`);
}
public async down(queryRunner: QueryRunner): Promise<void> {
}
}