2019-01-14 10:48:38 -05:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
|
|
|
|
async function up (utils: {
|
2020-01-31 10:56:52 -05:00
|
|
|
transaction: Sequelize.Transaction
|
|
|
|
queryInterface: Sequelize.QueryInterface
|
2019-01-14 10:48:38 -05:00
|
|
|
sequelize: Sequelize.Sequelize
|
|
|
|
}): Promise<void> {
|
|
|
|
|
|
|
|
{
|
|
|
|
const data = {
|
|
|
|
type: Sequelize.STRING(3000),
|
|
|
|
allowNull: false,
|
|
|
|
defaultValue: null
|
|
|
|
}
|
|
|
|
|
|
|
|
await utils.queryInterface.changeColumn('videoAbuse', 'reason', data)
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const data = {
|
|
|
|
type: Sequelize.STRING(3000),
|
|
|
|
allowNull: true,
|
|
|
|
defaultValue: null
|
|
|
|
}
|
|
|
|
|
|
|
|
await utils.queryInterface.changeColumn('videoAbuse', 'moderationComment', data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function down (options) {
|
|
|
|
throw new Error('Not implemented.')
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
up,
|
|
|
|
down
|
|
|
|
}
|