Add missing catch blocks for migration from 1.1.1 to 1.2.0

Signed-off-by: Hugo Caloto <hcaloto@gmail.com>
This commit is contained in:
Hugo Caloto 2018-07-09 09:27:17 +02:00 committed by Hugo Caloto
parent 429257880b
commit 26a14dd987
8 changed files with 56 additions and 2 deletions

View file

@ -3,6 +3,12 @@ module.exports = {
up: function (queryInterface, Sequelize) {
return queryInterface.addColumn('Users', 'accessToken', Sequelize.STRING).then(function () {
return queryInterface.addColumn('Users', 'refreshToken', Sequelize.STRING)
}).catch(function (error) {
if (error.message === "ER_DUP_FIELDNAME: Duplicate column name 'accessToken'") {
console.log('Migration has already run… ignoring.')
} else {
throw error
}
})
},