15 lines
450 B
TypeScript
15 lines
450 B
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm"
|
|
import MigrationHelper from "../../../helpers/MigrationHelper"
|
|
|
|
export class CreateMoon1719856023429 implements MigrationInterface {
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
MigrationHelper.Up('1719856023429-CreateMoon', '3.3.0', [
|
|
"01-Moon",
|
|
], queryRunner);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
}
|
|
|
|
}
|