summaryrefslogtreecommitdiff
path: root/lib/migrations/20160703062241-support-authorship.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/migrations/20160703062241-support-authorship.js')
-rw-r--r--lib/migrations/20160703062241-support-authorship.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/migrations/20160703062241-support-authorship.js b/lib/migrations/20160703062241-support-authorship.js
index d73923b0..b3ced8c4 100644
--- a/lib/migrations/20160703062241-support-authorship.js
+++ b/lib/migrations/20160703062241-support-authorship.js
@@ -16,6 +16,12 @@ module.exports = {
createdAt: Sequelize.DATE,
updatedAt: Sequelize.DATE
})
+ }).catch(function (error) {
+ if (error.message === "ER_DUP_FIELDNAME: Duplicate column name 'authorship'") {
+ console.log('Migration has already run… ignoring.')
+ } else {
+ throw error
+ }
})
},