mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-23 03:27:05 -04:00
9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
'use strict'
|
|
|
|
module.exports = {
|
|
up: function (queryInterface, Sequelize) {
|
|
return queryInterface.changeColumn('Users', 'history', {
|
|
type: Sequelize.TEXT('long')
|
|
})
|
|
}
|
|
}
|