2017-03-27 11:23:00 +00: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 07:27:17 +00:00
|
|
|
}).catch(function (error) {
|
2018-11-06 18:07:28 +00:00
|
|
|
if (error.message === 'SQLITE_ERROR: duplicate column name: lastchangeuserId' || error.message === "ER_DUP_FIELDNAME: Duplicate column name 'lastchangeuserId'" || error.message === 'column "lastchangeuserId" of relation "Notes" already exists') {
|
2018-07-09 07:27:17 +00:00
|
|
|
console.log('Migration has already run… ignoring.')
|
|
|
|
} else {
|
|
|
|
throw error
|
|
|
|
}
|
2017-03-27 11:23:00 +00:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
down: function (queryInterface, Sequelize) {
|
|
|
|
return queryInterface.removeColumn('Notes', 'lastchangeAt')
|
|
|
|
.then(function () {
|
|
|
|
return queryInterface.removeColumn('Notes', 'lastchangeuserId')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|