mirror of
https://github.com/status-im/codimd.git
synced 2025-02-20 03:58:19 +00:00
14 lines
485 B
JavaScript
14 lines
485 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 })
|
|
}
|
|
}
|