2017-03-14 01:02:43 -04:00
|
|
|
'use strict'
|
2016-05-15 00:20:42 -04:00
|
|
|
module.exports = {
|
2017-03-08 05:45:51 -05:00
|
|
|
up: function (queryInterface, Sequelize) {
|
2017-03-23 23:24:44 -04:00
|
|
|
return queryInterface.addColumn('Users', 'accessToken', Sequelize.STRING).then(function () {
|
|
|
|
return queryInterface.addColumn('Users', 'refreshToken', Sequelize.STRING)
|
2018-07-09 03:27:17 -04:00
|
|
|
}).catch(function (error) {
|
2020-12-02 11:22:27 -05:00
|
|
|
if (error.message.toLowerCase().includes('duplicate column name') ||
|
|
|
|
error.message === 'column "accessToken" of relation "Users" already exists') {
|
2019-05-30 18:27:56 -04:00
|
|
|
// eslint-disable-next-line no-console
|
2018-07-09 03:27:17 -04:00
|
|
|
console.log('Migration has already run… ignoring.')
|
|
|
|
} else {
|
|
|
|
throw error
|
|
|
|
}
|
2017-03-23 23:24:44 -04:00
|
|
|
})
|
2017-03-08 05:45:51 -05:00
|
|
|
},
|
2016-05-15 00:20:42 -04:00
|
|
|
|
2017-03-08 05:45:51 -05:00
|
|
|
down: function (queryInterface, Sequelize) {
|
2017-03-23 23:24:44 -04:00
|
|
|
return queryInterface.removeColumn('Users', 'accessToken').then(function () {
|
|
|
|
return queryInterface.removeColumn('Users', 'refreshToken')
|
|
|
|
})
|
2017-03-08 05:45:51 -05:00
|
|
|
}
|
|
|
|
}
|