2018-08-13 10:57:13 -04:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
import { VideoAbuseState } from '../../../shared/models/videos'
|
|
|
|
|
|
|
|
async function up (utils: {
|
|
|
|
transaction: Sequelize.Transaction
|
|
|
|
queryInterface: Sequelize.QueryInterface
|
|
|
|
sequelize: Sequelize.Sequelize
|
|
|
|
}): Promise<any> {
|
|
|
|
|
|
|
|
{
|
|
|
|
const data = {
|
2018-10-19 02:54:01 -04:00
|
|
|
type: Sequelize.STRING(300),
|
2018-08-13 10:57:13 -04:00
|
|
|
allowNull: true,
|
|
|
|
defaultValue: null
|
|
|
|
}
|
|
|
|
await utils.queryInterface.addColumn('videoBlacklist', 'reason', data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function down (options) {
|
|
|
|
throw new Error('Not implemented.')
|
|
|
|
}
|
|
|
|
|
|
|
|
export { up, down }
|