mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-06 03:50:26 +02:00
Fix video files duplicated when fps is null
Null values are not considered equal in a UNIQUE index
This commit is contained in:
parent
60e74f80d8
commit
2e7cf5ae0c
6 changed files with 38 additions and 5 deletions
23
server/initializers/migrations/0260-upload-quota-daily.ts
Normal file
23
server/initializers/migrations/0260-upload-quota-daily.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
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 }
|
Loading…
Add table
Add a link
Reference in a new issue