aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/migrations/0050-video-language.ts
blob: 95d0a473a27f583ebffa89e371b0a8debd29f340 (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: true,
    defaultValue: null
  }

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

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

export {
  up,
  down
}