mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
120225947f
Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
27 lines
888 B
JavaScript
27 lines
888 B
JavaScript
'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
|
|
}
|
|
})
|
|
},
|
|
|
|
down: function (queryInterface, Sequelize) {
|
|
return queryInterface.removeColumn('Notes', 'lastchangeAt')
|
|
.then(function () {
|
|
return queryInterface.removeColumn('Notes', 'lastchangeuserId')
|
|
})
|
|
}
|
|
}
|