aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/migrations/0020-video-likes.ts
blob: e435d06575e930697b51b5256567ca9dd30d0c6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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', 'likes', data, { transaction: utils.transaction }).asCallback(finalCallback)
}

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

export {
  up,
  down
}