diff --git a/api/api_sources/sources/database/migrations/1706036892274-closestCityNameChangeInWaterBody.ts b/api/api_sources/sources/database/migrations/1706036892274-closestCityNameChangeInWaterBody.ts deleted file mode 100644 index 3c6aa938..00000000 --- a/api/api_sources/sources/database/migrations/1706036892274-closestCityNameChangeInWaterBody.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { MigrationInterface, QueryRunner } from 'typeorm'; - -export class ClosestCityNameChangeInWaterBody1706036892274 implements MigrationInterface { - public async up(queryRunner: QueryRunner): Promise { - await queryRunner.query(`UPDATE "water_body" SET "closest_city" = CONCAT('e.g. ', "closest_city")`); - } - - public async down(queryRunner: QueryRunner): Promise { - await queryRunner.query(`UPDATE "water_body" SET "closest_city" = SUBSTRING("closest_city", 6)`); - } -}