From 4ae80a3ed08aac4dddc2bddb80b5da5d7e20df86 Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Mon, 30 Nov 2020 17:39:50 +0100 Subject: [Migrations] Replace similar code Signed-off-by: Tilman Vatteroth --- lib/migrations/20150702001020-update-to-0_3_1.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (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 b5b956c7..7bea58ca 100644 --- a/lib/migrations/20150702001020-update-to-0_3_1.js +++ b/lib/migrations/20150702001020-update-to-0_3_1.js @@ -22,9 +22,8 @@ module.exports = { }) }).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' || - error.message === 'ERROR: Duplicate column name \'shortid\'') { + error.message.toLowerCase().includes("duplicate column name 'shortid'")) { // eslint-disable-next-line no-console console.log('Migration has already run… ignoring.') } else { -- cgit v1.2.3