1
0
Fork 0

Fix video file storage column consistency

This commit is contained in:
Chocobozzz 2022-02-22 14:49:23 +01:00
parent 1d54b2052c
commit 5301e7762b
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 21 additions and 1 deletions

View File

@ -24,7 +24,7 @@ import { CONFIG, registerConfigChangedHandler } from './config'
// ---------------------------------------------------------------------------
const LAST_MIGRATION_VERSION = 675
const LAST_MIGRATION_VERSION = 680
// ---------------------------------------------------------------------------

View File

@ -0,0 +1,20 @@
import * as Sequelize from 'sequelize'
async function up (utils: {
transaction: Sequelize.Transaction
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
db: any
}): Promise<void> {
await utils.sequelize.query('ALTER TABLE "videoFile" ALTER COLUMN "storage" SET DEFAULT 0')
await utils.sequelize.query('ALTER TABLE "videoStreamingPlaylist" ALTER COLUMN "storage" SET DEFAULT 0')
}
function down (options) {
throw new Error('Not implemented.')
}
export {
up,
down
}