aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/migrations/0060-video-file.ts
blob: 00647e60e458abb5e5fcb79e37368344cf061ccf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import * as Sequelize from 'sequelize'
import * as Promise from 'bluebird'

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
}