summary refs log tree commit diff
path: root/src/util/migrations/1648643945733-ReleaseTypo.ts
blob: 944b9dd9ee1e4125bbb15831afde1d62120ec951 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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");
	}
}