]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - 0260-upload-quota-daily.ts
cbbe391ef923303761513c97598ba548e4dd00ad
[github/Chocobozzz/PeerTube.git] / 0260-upload-quota-daily.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<any> {
8 {
9 const data = {
10 type: Sequelize.BIGINT,
11 allowNull: false,
12 defaultValue: -1
13 }
14 await utils.queryInterface.addColumn('user', 'videoQuotaDaily', data)
15 }
16 }
17
18 function down (options) {
19 throw new Error('Not implemented.')
20 }
21
22 export { up, down }