2019-11-15 09:06:03 -05:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
|
|
|
|
async function up (utils: {
|
2020-01-31 10:56:52 -05:00
|
|
|
transaction: Sequelize.Transaction
|
|
|
|
queryInterface: Sequelize.QueryInterface
|
|
|
|
sequelize: Sequelize.Sequelize
|
2019-11-15 09:06:03 -05:00
|
|
|
db: any
|
|
|
|
}): Promise<void> {
|
|
|
|
{
|
|
|
|
const data = {
|
|
|
|
type: Sequelize.INTEGER,
|
|
|
|
allowNull: true,
|
|
|
|
references: {
|
|
|
|
model: 'videoStreamingPlaylist',
|
|
|
|
key: 'id'
|
|
|
|
},
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
}
|
|
|
|
|
|
|
|
await utils.queryInterface.addColumn('videoFile', 'videoStreamingPlaylistId', data)
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const data = {
|
|
|
|
type: Sequelize.INTEGER,
|
|
|
|
allowNull: true
|
|
|
|
}
|
|
|
|
|
|
|
|
await utils.queryInterface.changeColumn('videoFile', 'videoId', data)
|
|
|
|
}
|
2019-11-21 10:30:47 -05:00
|
|
|
|
|
|
|
{
|
|
|
|
await utils.queryInterface.removeIndex('videoFile', 'video_file_video_id_resolution_fps')
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const query = 'insert into "videoFile" ' +
|
|
|
|
'(resolution, size, "infoHash", "videoId", "createdAt", "updatedAt", fps, extname, "videoStreamingPlaylistId")' +
|
2020-01-31 10:56:52 -05:00
|
|
|
'(SELECT "videoFile".resolution, "videoFile".size, \'fake\', NULL, "videoFile"."createdAt", "videoFile"."updatedAt", ' +
|
|
|
|
'"videoFile"."fps", "videoFile".extname, "videoStreamingPlaylist".id FROM "videoStreamingPlaylist" ' +
|
2019-11-21 10:30:47 -05:00
|
|
|
'inner join video ON video.id = "videoStreamingPlaylist"."videoId" inner join "videoFile" ON "videoFile"."videoId" = video.id)'
|
|
|
|
|
|
|
|
await utils.sequelize.query(query, { transaction: utils.transaction })
|
|
|
|
}
|
2019-11-15 09:06:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function down (options) {
|
|
|
|
throw new Error('Not implemented.')
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
up,
|
|
|
|
down
|
|
|
|
}
|