aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/initializers/migrations/0060-video-file.ts
blob: f07fa77806807ac07f0d81240a9b5f3080c9a2fa (plain) (tree)
1
2
3
4
5
6
                                      

                     


                                          


























                                                                                                                                
import * as Sequelize from 'sequelize'

function up (utils: {
  transaction: Sequelize.Transaction
  queryInterface: Sequelize.QueryInterface
  sequelize: Sequelize.Sequelize
  db: any
}): Promise<void> {
  const q = utils.queryInterface

  const query = 'INSERT INTO "VideoFiles" ("videoId", "resolution", "size", "extname", "infoHash", "createdAt", "updatedAt") ' +
                'SELECT "id" AS "videoId", 0 AS "resolution", 0 AS "size", ' +
                '"extname"::"text"::"enum_VideoFiles_extname" as "extname", "infoHash", "createdAt", "updatedAt" ' +
                'FROM "Videos"'

  return utils.db.VideoFile.sync()
    .then(() => utils.sequelize.query(query))
    .then(() => {
      return q.removeColumn('Videos', 'extname')
    })
    .then(() => {
      return q.removeColumn('Videos', 'infoHash')
    })
}

function down (options) {
  throw new Error('Not implemented.')
}

export {
  up,
  down
}