28 lines
550 B
TypeScript
28 lines
550 B
TypeScript
|
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
|
||
|
}
|