overleaf/services/web/migrations/20210924140139_splittests-name-index.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

29 lines
700 B
JavaScript

const Helpers = require('./lib/helpers')
const { getCollectionInternal } = require('../app/src/infrastructure/mongodb')
exports.tags = ['saas']
const indexes = [
{
key: {
name: 1,
},
unique: true,
name: 'name_1',
},
]
async function getCollection() {
// NOTE: We do not access the splittests collection directly. Fetch it here.
return await getCollectionInternal('splittests')
}
exports.migrate = async client => {
const collection = await getCollection()
await Helpers.addIndexesToCollection(collection, indexes)
}
exports.rollback = async client => {
const collection = await getCollection()
await Helpers.dropIndexesFromCollection(collection, indexes)
}