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,13 @@
'use strict'
module.exports = {
up: function (queryInterface, Sequelize) {
return queryInterface.addColumn('Notes', 'alias', {
type: Sequelize.STRING,
unique: true
})
},
down: function (queryInterface, Sequelize) {
return queryInterface.removeColumn('Notes', 'alias')
}
}