mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 08:53:48 +01:00
8f3467f089
Close #7878
14 lines
355 B
TypeScript
14 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> {
|
|
}
|
|
|
|
}
|