Fix pending job table migration

pull/4367/head
Chocobozzz 2021-08-30 16:28:36 +02:00
parent 736c64ca4b
commit f2e31d589c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 28 additions and 1 deletions

View File

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

View File

@ -0,0 +1,27 @@
import * as Sequelize from 'sequelize'
async function up (utils: {
transaction: Sequelize.Transaction
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
db: any
}): Promise<void> {
for (const column of [ 'pendingMove', 'pendingTranscode' ]) {
const data = {
type: Sequelize.INTEGER,
allowNull: false,
defaultValue: 0
}
await utils.queryInterface.changeColumn('videoJobInfo', column, data)
}
}
function down (options) {
throw new Error('Not implemented.')
}
export {
up,
down
}