Fix video file storage column consistency

This commit is contained in:
Chocobozzz
2022-02-22 14:49:23 +01:00
parent 1d54b2052c
commit 5301e7762b
2 changed files with 21 additions and 1 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ import { CONFIG, registerConfigChangedHandler } from './config'
// ---------------------------------------------------------------------------
const LAST_MIGRATION_VERSION = 675
const LAST_MIGRATION_VERSION = 680
// ---------------------------------------------------------------------------
@@ -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
}