2017-03-14 13:02:43 +08:00
|
|
|
'use strict'
|
2016-05-15 12:20:42 +08:00
|
|
|
module.exports = {
|
2017-03-08 18:45:51 +08:00
|
|
|
up: function (queryInterface, Sequelize) {
|
2017-03-24 11:24:44 +08:00
|
|
|
return queryInterface.addColumn('Users', 'accessToken', Sequelize.STRING).then(function () {
|
|
|
|
return queryInterface.addColumn('Users', 'refreshToken', Sequelize.STRING)
|
2018-07-09 09:27:17 +02:00
|
|
|
}).catch(function (error) {
|
2018-11-06 19:07:28 +01: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 09:27:17 +02:00
|
|
|
console.log('Migration has already run… ignoring.')
|
|
|
|
} else {
|
|
|
|
throw error
|
|
|
|
}
|
2017-03-24 11:24:44 +08:00
|
|
|
})
|
2017-03-08 18:45:51 +08:00
|
|
|
},
|
2016-05-15 12:20:42 +08:00
|
|
|
|
2017-03-08 18:45:51 +08:00
|
|
|
down: function (queryInterface, Sequelize) {
|
2017-03-24 11:24:44 +08:00
|
|
|
return queryInterface.removeColumn('Users', 'accessToken').then(function () {
|
|
|
|
return queryInterface.removeColumn('Users', 'refreshToken')
|
|
|
|
})
|
2017-03-08 18:45:51 +08:00
|
|
|
}
|
|
|
|
}
|