]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - 0570-permanent-live.ts
9572a9b2d53f19c0cc811870689aaac19150f954
[github/Chocobozzz/PeerTube.git] / 0570-permanent-live.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 {
10 const data = {
11 type: Sequelize.BOOLEAN,
12 defaultValue: false,
13 allowNull: false
14 }
15
16 await utils.queryInterface.addColumn('videoLive', 'permanentLive', data)
17 }
18 }
19
20 function down (options) {
21 throw new Error('Not implemented.')
22 }
23
24 export {
25 up,
26 down
27 }