hedgedoc/lib/migrations/20160112220142-note-add-lastchange.js

28 lines
888 B
JavaScript
Raw Normal View History

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
})
}).catch(function (error) {
if (error.message === 'column "lastchangeuserId" of relation "Notes" already exists' ||
error.message.toLowerCase().includes('duplicate column name')) {
// eslint-disable-next-line no-console
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')
.then(function () {
return queryInterface.removeColumn('Notes', 'lastchangeuserId')
})
2017-03-27 07:23:00 -04:00
}
}