summaryrefslogtreecommitdiff
path: root/lib/migrations/20160703062241-support-authorship.js
diff options
context:
space:
mode:
authorCarles Bruguera2018-11-06 19:07:28 +0100
committerCarles Bruguera2018-11-16 23:53:50 +0100
commit5da10c0e2c00a7e26f4521e45888840d41175a61 (patch)
tree70e471b425b6268d70d626d31ac9b3d7b3573320 /lib/migrations/20160703062241-support-authorship.js
parent64e9dfd7140a90ca388eed3e0c26df800850e799 (diff)
Update error message text checks
Signed-off-by: Carles Bruguera <carlesba@gmail.com>
Diffstat (limited to 'lib/migrations/20160703062241-support-authorship.js')
-rw-r--r--lib/migrations/20160703062241-support-authorship.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/migrations/20160703062241-support-authorship.js b/lib/migrations/20160703062241-support-authorship.js
index ccdfeb3e..f452b1a7 100644
--- a/lib/migrations/20160703062241-support-authorship.js
+++ b/lib/migrations/20160703062241-support-authorship.js
@@ -17,7 +17,7 @@ module.exports = {
updatedAt: Sequelize.DATE
})
}).catch(function (error) {
- if (error.message === "ER_DUP_FIELDNAME: Duplicate column name 'authorship'" || error.message === 'column "authorship" of relation "Notes" already exists') {
+ if (error.message === 'SQLITE_ERROR: duplicate column name: authorship' || error.message === "ER_DUP_FIELDNAME: Duplicate column name 'authorship'" || error.message === 'column "authorship" of relation "Notes" already exists') {
console.log('Migration has already run… ignoring.')
} else {
throw error