From a157599884c98667ca8dc608e6de4d70d0a1812d Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Mon, 30 Nov 2020 17:31:55 +0100 Subject: [Migrations] Add variant of error message to catch block Signed-off-by: Tilman Vatteroth --- lib/migrations/20150702001020-update-to-0_3_1.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/migrations/20150702001020-update-to-0_3_1.js b/lib/migrations/20150702001020-update-to-0_3_1.js index b941048e..b5b956c7 100644 --- a/lib/migrations/20150702001020-update-to-0_3_1.js +++ b/lib/migrations/20150702001020-update-to-0_3_1.js @@ -21,7 +21,10 @@ module.exports = { defaultValue: 0 }) }).catch(function (error) { - if (error.message === 'SQLITE_ERROR: duplicate column name: shortid' || error.message === "ER_DUP_FIELDNAME: Duplicate column name 'shortid'" || error.message === 'column "shortid" of relation "Notes" already exists') { + if (error.message === 'SQLITE_ERROR: duplicate column name: shortid' || + error.message === "ER_DUP_FIELDNAME: Duplicate column name 'shortid'" || + error.message === 'column "shortid" of relation "Notes" already exists' || + error.message === 'ERROR: Duplicate column name \'shortid\'') { // eslint-disable-next-line no-console console.log('Migration has already run… ignoring.') } else { -- cgit v1.2.3