mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
* 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
24 lines
524 B
TypeScript
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 }
|