2017-03-27 07:23:00 -04:00
|
|
|
'use strict'
|
|
|
|
module.exports = {
|
|
|
|
up: function (queryInterface, Sequelize) {
|
|
|
|
return queryInterface.addColumn('Notes', 'lastchangeuserId', {
|
|
|
|
type: Sequelize.UUID
|
|
|
|
}).then(function () {
|
|
|
|
return queryInterface.addColumn('Notes', 'lastchangeAt', {
|
|
|
|
type: Sequelize.DATE
|
|
|
|
})
|
2018-07-09 03:27:17 -04:00
|
|
|
}).catch(function (error) {
|
2020-12-02 11:22:27 -05:00
|
|
|
if (error.message === 'column "lastchangeuserId" of relation "Notes" already exists' ||
|
|
|
|
error.message.toLowerCase().includes('duplicate column name')) {
|
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-27 07:23:00 -04:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
down: function (queryInterface, Sequelize) {
|
|
|
|
return queryInterface.removeColumn('Notes', 'lastchangeAt')
|
2019-05-30 18:27:56 -04:00
|
|
|
.then(function () {
|
|
|
|
return queryInterface.removeColumn('Notes', 'lastchangeuserId')
|
|
|
|
})
|
2017-03-27 07:23:00 -04:00
|
|
|
}
|
|
|
|
}
|