forked from FoundKeyGang/FoundKey
632af91878
Close #7878
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
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> {
|
|
}
|
|
|
|
}
|