aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/initializers/migrations/0255-video-blacklist-reason.ts
blob: 7de982f9341a9d8dfd4f16690707e75c9e606f2b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                      








                                          
                                  











                                                                          
import * as Sequelize from 'sequelize'

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 }