summary refs log tree commit diff
path: root/util/src/migrations
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-03-31 01:21:40 +1100
committerGitHub <noreply@github.com>2022-03-30 17:21:40 +0300
commit40f08ed76c35daea8a1e743d2076e27ea4d7e40f (patch)
tree3c4c6d6d66a11fe25382edb9682f0ecdc1f42624 /util/src/migrations
parentMerge pull request #705 from fosscord/dependabot/npm_and_yarn/bundle/minimist... (diff)
downloadserver-40f08ed76c35daea8a1e743d2076e27ea4d7e40f.tar.xz
Fix typo in table 'client_relase' -> 'client_release' ( and other of the same typo ) (#703)
* Fixed typo in table name 'client_relase' -> 'client_release'. Fixed more typos of the same typo.

* Fixed migration ( but dirty lol )
Diffstat (limited to 'util/src/migrations')
-rw-r--r--util/src/migrations/1648643945733-ReleaseTypo.ts16
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"); + } +}