From df7c2394efc3c793c2ee1231b1d53dccfe60d07c Mon Sep 17 00:00:00 2001 From: Daniel Bachler Date: Sat, 27 Jan 2024 02:15:17 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20fix=20order=20of=20tables=20to?= =?UTF-8?q?=20drop?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/migration/1704297774028-DropObsoleteTables.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/migration/1704297774028-DropObsoleteTables.ts b/db/migration/1704297774028-DropObsoleteTables.ts index 510ba0b2884..291cb9b6d8b 100644 --- a/db/migration/1704297774028-DropObsoleteTables.ts +++ b/db/migration/1704297774028-DropObsoleteTables.ts @@ -4,13 +4,13 @@ export class DropObsoleteTables1704297774028 implements MigrationInterface { public async up(queryRunner: QueryRunner): Promise { // drop tables country_name_tool_continent, country_name_tool_countrydata, country_name_tool_countryname await queryRunner.query( - `DROP TABLE IF EXISTS country_name_tool_continent` + `DROP TABLE IF EXISTS country_name_tool_countryname` ) await queryRunner.query( `DROP TABLE IF EXISTS country_name_tool_countrydata` ) await queryRunner.query( - `DROP TABLE IF EXISTS country_name_tool_countryname` + `DROP TABLE IF EXISTS country_name_tool_continent` ) // drop importer_importhistory await queryRunner.query(`DROP TABLE IF EXISTS importer_importhistory`)