14 lines
477 B
JavaScript
14 lines
477 B
JavaScript
|
'use strict'
|
||
|
|
||
|
module.exports = {
|
||
|
up: function (queryInterface, Sequelize) {
|
||
|
queryInterface.changeColumn('Notes', 'authorship', {type: Sequelize.TEXT('long')})
|
||
|
queryInterface.changeColumn('Revisions', 'authorship', {type: Sequelize.TEXT('long')})
|
||
|
},
|
||
|
|
||
|
down: function (queryInterface, Sequelize) {
|
||
|
queryInterface.changeColumn('Notes', 'authorship', {type: Sequelize.TEXT})
|
||
|
queryInterface.changeColumn('Revisions', 'authorship', {type: Sequelize.TEXT})
|
||
|
}
|
||
|
}
|