2017-03-14 05:02:43 +00:00
|
|
|
'use strict'
|
2016-05-15 04:20:42 +00:00
|
|
|
module.exports = {
|
2017-03-08 10:45:51 +00:00
|
|
|
up: function (queryInterface, Sequelize) {
|
2017-03-24 03:24:44 +00:00
|
|
|
return queryInterface.addColumn('Users', 'accessToken', Sequelize.STRING).then(function () {
|
|
|
|
return queryInterface.addColumn('Users', 'refreshToken', Sequelize.STRING)
|
2018-07-09 07:27:17 +00:00
|
|
|
}).catch(function (error) {
|
2018-11-06 18:07:28 +00:00
|
|
|
if (error.message === 'SQLITE_ERROR: duplicate column name: accessToken' || error.message === "ER_DUP_FIELDNAME: Duplicate column name 'accessToken'" || error.message === 'column "accessToken" of relation "Users" already exists') {
|
2018-07-09 07:27:17 +00:00
|
|
|
console.log('Migration has already run… ignoring.')
|
|
|
|
} else {
|
|
|
|
throw error
|
|
|
|
}
|
2017-03-24 03:24:44 +00:00
|
|
|
})
|
2017-03-08 10:45:51 +00:00
|
|
|
},
|
2016-05-15 04:20:42 +00:00
|
|
|
|
2017-03-08 10:45:51 +00:00
|
|
|
down: function (queryInterface, Sequelize) {
|
2017-03-24 03:24:44 +00:00
|
|
|
return queryInterface.removeColumn('Users', 'accessToken').then(function () {
|
|
|
|
return queryInterface.removeColumn('Users', 'refreshToken')
|
|
|
|
})
|
2017-03-08 10:45:51 +00:00
|
|
|
}
|
|
|
|
}
|