Merge pull request #28171 from overleaf/bg-drop-old-lastbackedupversion-index

add migration to drop old lastBackedUpVersion index

GitOrigin-RevId: bfdf88ba9e94f3603df5415bc384e31c5f365709
This commit is contained in:
Brian Gough
2025-09-05 11:37:16 +01:00
committed by Copybot
parent bc154642da
commit c82704c9a0

View File

@@ -0,0 +1,36 @@
/* eslint-disable no-unused-vars */
import Helpers from './lib/helpers.mjs'
const tags = ['saas']
const indexes = [
{
key: { 'overleaf.backup.lastBackedUpVersion': 1 },
name: 'overleaf.backup.lastBackedUpVersion_1',
partialFilterExpression: {
'overleaf.backup.lastBackedUpVersion': { $in: [null] },
},
},
]
const migrate = async client => {
const { db } = client
// Ensure the optimisation migration has run first to create the new index
await Helpers.assertDependency(
'20250827155732_optimise_lastBackedUpVersion_index'
)
// Drop the old index from 20250307120446_create_project_lastBackedUpVersion_index
await Helpers.dropIndexesFromCollection(db.projects, indexes)
}
const rollback = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.projects, indexes)
}
export default {
tags,
migrate,
rollback,
}