From 5da10c0e2c00a7e26f4521e45888840d41175a61 Mon Sep 17 00:00:00 2001 From: Carles Bruguera Date: Tue, 6 Nov 2018 19:07:28 +0100 Subject: Update error message text checks Signed-off-by: Carles Bruguera --- lib/migrations/20150702001020-update-to-0_3_1.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/migrations/20150702001020-update-to-0_3_1.js') diff --git a/lib/migrations/20150702001020-update-to-0_3_1.js b/lib/migrations/20150702001020-update-to-0_3_1.js index eb18211f..e1a88661 100644 --- a/lib/migrations/20150702001020-update-to-0_3_1.js +++ b/lib/migrations/20150702001020-update-to-0_3_1.js @@ -21,7 +21,7 @@ module.exports = { defaultValue: 0 }) }).catch(function (error) { - if (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') { console.log('Migration has already run… ignoring.') } else { throw error -- cgit v1.2.3