123456789101112131415161718192021222324 |
- 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 = {
- type: Sequelize.STRING(300),
- allowNull: true,
- defaultValue: null
- }
- await utils.queryInterface.addColumn('videoBlacklist', 'reason', data)
- }
- }
- function down (options) {
- throw new Error('Not implemented.')
- }
- export { up, down }
|