Merge branch 'feature/correctly-send-activities' into develop
[oweals/peertube.git] / server / initializers / migrations / 0215-video-support-length.ts
1 import * as Sequelize from 'sequelize'
2 import { CONSTRAINTS_FIELDS } from '../index'
3
4 async function up (utils: {
5   transaction: Sequelize.Transaction,
6   queryInterface: Sequelize.QueryInterface,
7   sequelize: Sequelize.Sequelize
8 }): Promise<void> {
9   {
10     const data = {
11       type: Sequelize.STRING(500),
12       allowNull: true,
13       defaultValue: null
14     }
15     await utils.queryInterface.changeColumn('video', 'support', data)
16   }
17
18   {
19     const data = {
20       type: Sequelize.STRING(500),
21       allowNull: true,
22       defaultValue: null
23     }
24     await utils.queryInterface.changeColumn('videoChannel', 'support', data)
25   }
26
27   {
28     const data = {
29       type: Sequelize.STRING(500),
30       allowNull: true,
31       defaultValue: null
32     }
33     await utils.queryInterface.changeColumn('videoChannel', 'description', data)
34   }
35 }
36
37 function down (options) {
38   throw new Error('Not implemented.')
39 }
40
41 export {
42   up,
43   down
44 }