Fix migrations
[oweals/peertube.git] / server / initializers / migrations / 0455-soft-delete-video-comments.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.INTEGER,
12       allowNull: true,
13       defaultValue: null
14     }
15
16     await utils.queryInterface.changeColumn('videoComment', 'accountId', data)
17   }
18
19   {
20     const data = {
21       type: Sequelize.DATE,
22       allowNull: true,
23       defaultValue: null
24     }
25     await utils.queryInterface.addColumn('videoComment', 'deletedAt', data)
26   }
27 }
28
29 function down (options) {
30   throw new Error('Not implemented.')
31 }
32
33 export {
34   up,
35   down
36 }