2018-01-03 04:12:36 -05:00
|
|
|
import * as Sequelize from 'sequelize'
|
2018-07-25 16:01:25 -04:00
|
|
|
import { Migration } from '../../models/migrations'
|
2018-01-03 04:12:36 -05:00
|
|
|
|
|
|
|
async function up (utils: {
|
2020-01-31 10:56:52 -05:00
|
|
|
transaction: Sequelize.Transaction
|
|
|
|
queryInterface: Sequelize.QueryInterface
|
2018-01-03 04:12:36 -05:00
|
|
|
sequelize: Sequelize.Sequelize
|
|
|
|
}): Promise<void> {
|
|
|
|
const data = {
|
|
|
|
type: Sequelize.BOOLEAN,
|
|
|
|
allowNull: false,
|
|
|
|
defaultValue: true
|
2018-07-25 16:01:25 -04:00
|
|
|
} as Migration.Boolean
|
2018-01-03 04:12:36 -05:00
|
|
|
await utils.queryInterface.addColumn('video', 'commentsEnabled', data)
|
|
|
|
|
|
|
|
data.defaultValue = null
|
|
|
|
return utils.queryInterface.changeColumn('video', 'commentsEnabled', data)
|
|
|
|
}
|
|
|
|
|
|
|
|
function down (options) {
|
|
|
|
throw new Error('Not implemented.')
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
up,
|
|
|
|
down
|
|
|
|
}
|