mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-27 04:34:03 +00:00
add a mongo index to find projects which are not backed up GitOrigin-RevId: d776ebac2bef348117dc87556156e4682ac1b3e3
31 lines
635 B
JavaScript
31 lines
635 B
JavaScript
/* 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
|
|
await Helpers.addIndexesToCollection(db.projects, indexes)
|
|
}
|
|
|
|
const rollback = async client => {
|
|
const { db } = client
|
|
await Helpers.dropIndexesFromCollection(db.projects, indexes)
|
|
}
|
|
|
|
export default {
|
|
tags,
|
|
migrate,
|
|
rollback,
|
|
}
|