Add ability to disable webtorrent
[oweals/peertube.git] / server / initializers / migrations / 0095-videos-privacy.ts
1 import * as Sequelize from 'sequelize'
2
3 async function up (utils: {
4   transaction: Sequelize.Transaction,
5   queryInterface: Sequelize.QueryInterface,
6   sequelize: Sequelize.Sequelize,
7   db: any
8 }): Promise<void> {
9   const q = utils.queryInterface
10
11   const data = {
12     type: Sequelize.INTEGER,
13     defaultValue: null,
14     allowNull: true
15   }
16   await q.addColumn('Videos', 'privacy', data)
17
18   const query = 'UPDATE "Videos" SET "privacy" = 1'
19   const options = {
20     type: Sequelize.QueryTypes.BULKUPDATE
21   }
22   await utils.sequelize.query(query, options)
23
24   data.allowNull = false
25   await q.changeColumn('Videos', 'privacy', data)
26 }
27
28 function down (options) {
29   throw new Error('Not implemented.')
30 }
31
32 export {
33   up,
34   down
35 }