mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
|
|
export class FixRepackUploadDate1715900413313 implements MigrationInterface {
|
|
public async up(_: QueryRunner): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
public async down(_: QueryRunner): Promise<void> {
|
|
return;
|
|
}
|
|
}
|