aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/initializers/migrations/0025-video-dislikes.ts
blob: 57e54e9046a868adb4885b8ebf3e8d780f28b246 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
                                                                
                                    











                                                                                                       
                                   

                                     




        
// utils = { transaction, queryInterface, sequelize, Sequelize }
function up (utils, finalCallback) {
  const q = utils.queryInterface
  const Sequelize = utils.Sequelize

  const data = {
    type: Sequelize.INTEGER,
    allowNull: false,
    defaultValue: 0
  }

  q.addColumn('Videos', 'dislikes', data, { transaction: utils.transaction }).asCallback(finalCallback)
}

function down (options, callback) {
  throw new Error('Not implemented.')
}

export {
  up,
  down
}