]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/initializers/migrations/0120-video-null.ts
Support short uuid for GET video/playlist
[github/Chocobozzz/PeerTube.git] / server / initializers / migrations / 0120-video-null.ts
CommitLineData
8e7f08b5 1import * as Sequelize from 'sequelize'
8e7f08b5
C
2
3async function up (utils: {
a1587156
C
4 transaction: Sequelize.Transaction
5 queryInterface: Sequelize.QueryInterface
6 sequelize: Sequelize.Sequelize
3fd3ab2d 7 db: any
8e7f08b5
C
8}): Promise<void> {
9
10 {
11 const data = {
12 type: Sequelize.INTEGER,
13 allowNull: true,
14 defaultValue: null
15 }
16 await utils.queryInterface.changeColumn('Videos', 'licence', data)
17 }
18
19 {
20 const data = {
21 type: Sequelize.INTEGER,
22 allowNull: true,
23 defaultValue: null
24 }
25 await utils.queryInterface.changeColumn('Videos', 'category', data)
26 }
27
28 {
29 const data = {
d23e6a1c 30 type: Sequelize.STRING(10000),
8e7f08b5
C
31 allowNull: true,
32 defaultValue: null
33 }
34 await utils.queryInterface.changeColumn('Videos', 'description', data)
35 }
36}
37
38function down (options) {
39 throw new Error('Not implemented.')
40}
41
42export {
43 up,
44 down
45}