PeerTube/server/initializers/migrations/0260-upload_quota_daily.ts
Felix Ableitner bee0abffff Implement daily upload limit (#956)
* Implement daily upload limit (ref #652)

* remove duplicate code

* review fixes

* fix tests?

* whitespace fixes, finish leftover todo

* fix tests

* added some new tests

* use different config value for tests

* remove todo
2018-08-28 09:01:35 +02:00

24 lines
524 B
TypeScript

import * as Sequelize from 'sequelize'
import { CONSTRAINTS_FIELDS } from '../constants'
async function up (utils: {
transaction: Sequelize.Transaction
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
}): Promise<any> {
{
const data = {
type: Sequelize.BIGINT,
allowNull: false,
defaultValue: -1
}
await utils.queryInterface.addColumn('user', 'videoQuotaDaily', data)
}
}
function down (options) {
throw new Error('Not implemented.')
}
export { up, down }