PeerTube/server/initializers/migrations/0310-drop-unused-video-inde...

33 lines
624 B
TypeScript
Raw Normal View History

2018-12-20 15:25:24 +01:00
import * as Sequelize from 'sequelize'
async function up (utils: {
2020-01-31 16:56:52 +01:00
transaction: Sequelize.Transaction
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
2018-12-20 15:25:24 +01:00
db: any
}): Promise<void> {
const indexNames = [
'video_category',
'video_licence',
'video_nsfw',
'video_language',
'video_wait_transcoding',
'video_state',
'video_remote',
'video_likes'
]
for (const indexName of indexNames) {
await utils.sequelize.query('DROP INDEX IF EXISTS "' + indexName + '";')
}
}
function down (options) {
throw new Error('Not implemented.')
}
export {
up,
down
}