diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-04-11 00:25:53 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-04-11 00:26:33 +1000 |
commit | cf9a92383806561ed311634c41a5a1376304d2de (patch) | |
tree | 076c5db27a6c51ae7959c2b9dd4d5dc220981d28 /util/src/migrations | |
parent | Merge branch 'master' into fix/claim_accounts (diff) | |
parent | Update Guild.ts (diff) | |
download | server-cf9a92383806561ed311634c41a5a1376304d2de.tar.xz |
Merge branch 'master' into fix/claim_accounts
Diffstat (limited to 'util/src/migrations')
-rw-r--r-- | util/src/migrations/1648643945733-ReleaseTypo.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/util/src/migrations/1648643945733-ReleaseTypo.ts b/util/src/migrations/1648643945733-ReleaseTypo.ts new file mode 100644 index 00000000..944b9dd9 --- /dev/null +++ b/util/src/migrations/1648643945733-ReleaseTypo.ts @@ -0,0 +1,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"); + } +} |