mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
120225947f
Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
18 lines
615 B
JavaScript
18 lines
615 B
JavaScript
'use strict'
|
|
module.exports = {
|
|
up: function (queryInterface, Sequelize) {
|
|
return queryInterface.addColumn('Notes', 'deletedAt', Sequelize.DATE).catch(function (error) {
|
|
if (error.message.toLowerCase().includes('duplicate column name') ||
|
|
error.message === 'column "deletedAt" of relation "Notes" already exists') {
|
|
// eslint-disable-next-line no-console
|
|
console.log('Migration has already run… ignoring.')
|
|
} else {
|
|
throw error
|
|
}
|
|
})
|
|
},
|
|
|
|
down: function (queryInterface, Sequelize) {
|
|
return queryInterface.removeColumn('Notes', 'deletedAt')
|
|
}
|
|
}
|