2017-07-05 07:26:25 -04:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
import * as Promise from 'bluebird'
|
|
|
|
|
|
|
|
function up (utils: {
|
|
|
|
transaction: Sequelize.Transaction,
|
|
|
|
queryInterface: Sequelize.QueryInterface,
|
|
|
|
sequelize: Sequelize.Sequelize
|
|
|
|
}): Promise<void> {
|
2017-04-07 06:13:37 -04:00
|
|
|
const q = utils.queryInterface
|
|
|
|
|
|
|
|
const data = {
|
|
|
|
type: Sequelize.INTEGER,
|
|
|
|
allowNull: true,
|
|
|
|
defaultValue: null
|
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return q.addColumn('Videos', 'language', data)
|
2017-04-07 06:13:37 -04:00
|
|
|
}
|
|
|
|
|
2017-07-11 10:01:56 -04:00
|
|
|
function down (options) {
|
2017-04-07 06:13:37 -04:00
|
|
|
throw new Error('Not implemented.')
|
|
|
|
}
|
2017-05-15 16:22:03 -04:00
|
|
|
|
|
|
|
export {
|
|
|
|
up,
|
|
|
|
down
|
|
|
|
}
|