(hotfix) remove null categories in RSS/Atom feeds
[oweals/peertube.git] / server / initializers / migrations / 0165-video-route.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 }): Promise<void> {
8   {
9     const toReplace = ':443'
10     const by = ''
11     const replacer = column => `replace("${column}", '${toReplace}', '${by}')`
12
13     const query = `UPDATE video SET url = ${replacer('url')}`
14     await utils.sequelize.query(query)
15   }
16 }
17
18 function down (options) {
19   throw new Error('Not implemented.')
20 }
21
22 export {
23   up,
24   down
25 }