aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/migrations/0470-cleaup-indexes.ts
blob: 53e401c2bf732ea045669000df759ce646565152 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import * as Sequelize from 'sequelize'

async function up (utils: {
  transaction: Sequelize.Transaction,
  queryInterface: Sequelize.QueryInterface,
  sequelize: Sequelize.Sequelize,
  db: any
}): Promise<void> {
  await utils.sequelize.query('DROP INDEX IF EXISTS video_share_account_id;')
  await utils.sequelize.query('DROP INDEX IF EXISTS video_published_at;')

  await utils.sequelize.query('ALTER TABLE "avatar" DROP COLUMN IF EXISTS "avatarId"')
}

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

export {
  up,
  down
}