mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 02:06:29 -05:00
20 lines
531 B
JavaScript
20 lines
531 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
|
||
|
})
|
||
|
})
|
||
|
},
|
||
|
|
||
|
down: function (queryInterface, Sequelize) {
|
||
|
return queryInterface.removeColumn('Notes', 'lastchangeAt')
|
||
|
.then(function () {
|
||
|
return queryInterface.removeColumn('Notes', 'lastchangeuserId')
|
||
|
})
|
||
|
}
|
||
|
}
|