不要怂,就是干,撸起袖子干!

You need to sign in or sign up before continuing.
20111206061400-removeShopIdColumnFromUser.js 244 Bytes
module.exports = {
  up: function(migration, DataTypes) {
    migration.removeColumn('User', 'shopId')
  },

  down: function(migration, DataTypes) {
    migration.addColumn('User', 'shopId', { type: DataTypes.INTEGER, allowNull: true })
  }
}