aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/migrations/0280-webtorrent-policy-user.ts
blob: d24f6709ee65edb9c48f12b9700dcce9161b87fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import * as Sequelize from 'sequelize'
import { values } from 'lodash'
import { WEBTORRENT_POLICY_TYPES } from '../constants'

async function up (utils: {
  transaction: Sequelize.Transaction
  queryInterface: Sequelize.QueryInterface
  sequelize: Sequelize.Sequelize
}): Promise<any> {
  {
    const data = {
      type: Sequelize.ENUM(values(WEBTORRENT_POLICY_TYPES)),
      allowNull: false,
      defaultValue: 'enable'
    }

    await utils.queryInterface.addColumn('user', 'webTorrentPolicy', data)
  }

}

function down (options) {
  throw new Error('Not implemented.')
}

export { up, down }