From 095865445781b72c6bf91ecd065292a1d8b15e35 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 2 Feb 2021 09:56:59 +0000 Subject: [PATCH] Updated migration warn message no issue - fixed typo and improved message formatting --- core/server/data/migrations/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/server/data/migrations/utils.js b/core/server/data/migrations/utils.js index 6dc1723a21..1a89b79cc5 100644 --- a/core/server/data/migrations/utils.js +++ b/core/server/data/migrations/utils.js @@ -45,7 +45,7 @@ function dropTables(names) { const exists = await connection.schema.hasTable(name); if (!exists) { - logging.warn(`Failed dropping table: ${name}. Table does not exits`); + logging.warn(`Failed to drop table: ${name} - table does not exist`); } else { logging.info(`Dropping table: ${name}`); await commands.deleteTable(name, connection);