2017-07-05 07:26:25 -04:00
|
|
|
import * as Sequelize from 'sequelize'
|
2018-07-25 16:01:25 -04:00
|
|
|
import { Migration } from '../../models/migrations'
|
2017-07-05 07:26:25 -04:00
|
|
|
|
|
|
|
function up (utils: {
|
2020-01-31 10:56:52 -05:00
|
|
|
transaction: Sequelize.Transaction
|
|
|
|
queryInterface: Sequelize.QueryInterface
|
2017-07-05 07:26:25 -04:00
|
|
|
sequelize: Sequelize.Sequelize
|
|
|
|
}): Promise<void> {
|
2017-03-27 14:53:11 -04:00
|
|
|
const q = utils.queryInterface
|
|
|
|
|
|
|
|
const data = {
|
|
|
|
type: Sequelize.INTEGER,
|
|
|
|
allowNull: false,
|
|
|
|
defaultValue: 0
|
2018-07-25 16:01:25 -04:00
|
|
|
} as Migration.Integer
|
2017-03-27 14:53:11 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
return q.addColumn('Videos', 'licence', data)
|
|
|
|
.then(() => {
|
2017-03-27 14:53:11 -04:00
|
|
|
data.defaultValue = null
|
2017-07-05 07:26:25 -04:00
|
|
|
return q.changeColumn('Videos', 'licence', data)
|
|
|
|
})
|
2017-03-27 14:53:11 -04:00
|
|
|
}
|
|
|
|
|
2017-07-11 10:01:56 -04:00
|
|
|
function down (options) {
|
2017-03-27 14:53:11 -04:00
|
|
|
throw new Error('Not implemented.')
|
|
|
|
}
|
2017-05-15 16:22:03 -04:00
|
|
|
|
|
|
|
export {
|
|
|
|
up,
|
|
|
|
down
|
|
|
|
}
|