]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - 0065-video-file-size.ts
ac952a98cc57d6b899718f641324782ead47c839
[github/Chocobozzz/PeerTube.git] / 0065-video-file-size.ts
1 import * as Sequelize from 'sequelize'
2
3 function up (utils: {
4 transaction: Sequelize.Transaction
5 queryInterface: Sequelize.QueryInterface
6 sequelize: Sequelize.Sequelize
7 db: any
8 }): Promise<void> {
9 throw new Error('Removed, please upgrade from a previous version first.')
10 }
11
12 function down (options) {
13 throw new Error('Not implemented.')
14 }
15
16 export {
17 up,
18 down
19 }