overleaf/services/web/migrations/20190912145022_create_projectImportFailures_indexes.js
Jakob Ackermann eef5cd00e3 Merge pull request #6247 from overleaf/jpa-cleanup-mongo
[migrations] delete unused collections and properly apply saml indexes

GitOrigin-RevId: eafcde98cbb603c275986a5bca708b9f8221877f
2022-01-11 09:03:34 +00:00

34 lines
857 B
JavaScript

/* eslint-disable no-unused-vars */
const Helpers = require('./lib/helpers')
const { getCollectionInternal } = require('../app/src/infrastructure/mongodb')
exports.tags = ['saas']
const indexes = [
{
key: {
v1_project_id: 1,
},
name: 'v1_project_id_1',
},
]
async function getCollection() {
// NOTE: This is a stale collection, it will get dropped in a later migration.
return await getCollectionInternal('projectImportFailures')
}
exports.migrate = async client => {
const collection = await getCollection()
await Helpers.addIndexesToCollection(collection, indexes)
}
exports.rollback = async client => {
const collection = await getCollection()
try {
await Helpers.dropIndexesFromCollection(collection, indexes)
} catch (err) {
console.error('Something went wrong rolling back the migrations', err)
}
}