fix: Add missing migration

This commit is contained in:
BoHong Li 2017-03-27 19:23:00 +08:00
parent b2985085d0
commit 6f14822413
7 changed files with 139 additions and 0 deletions

View file

@ -0,0 +1,14 @@
'use strict'
module.exports = {
up: function (queryInterface, Sequelize) {
return queryInterface.changeColumn('Notes', 'title', {
type: Sequelize.TEXT
})
},
down: function (queryInterface, Sequelize) {
return queryInterface.changeColumn('Notes', 'title', {
type: Sequelize.STRING
})
}
}