* Fixed typo in table name 'client_relase' -> 'client_release'. Fixed more typos of the same typo. * Fixed migration ( but dirty lol )
17 lines
613 B
TypeScript
17 lines
613 B
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
|
|
export class ReleaseTypo1648643945733 implements MigrationInterface {
|
|
name = "ReleaseTypo1648643945733";
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
//drop table first because typeorm creates it before migrations run
|
|
await queryRunner.dropTable("client_release", true);
|
|
await queryRunner.renameTable("client_relase", "client_release");
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.dropTable("client_relase", true);
|
|
await queryRunner.renameTable("client_release", "client_relase");
|
|
}
|
|
}
|