Files
overleaf-cep/tools/migrations/20260430120000_update_libraryReferences_userId_updatedAt_index.mjs
Eric Mc Sween 569f36d01b Merge pull request #33315 from overleaf/em-library-api-pagination
Add cursor-based pagination to GET /library/references

GitOrigin-RevId: 1acec69031b0ca82ef6e1e05eddb165acaf05003
2026-05-12 08:06:55 +00:00

32 lines
729 B
JavaScript

import Helpers from './lib/helpers.mjs'
const tags = ['saas']
const oldIndex = {
key: { userId: 1, updatedAt: 1 },
name: 'userId_1_updatedAt_1',
}
const newIndex = {
key: { userId: 1, updatedAt: 1, _id: 1 },
name: 'userId_1_updatedAt_1__id_1',
}
const migrate = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.libraryReferences, [newIndex])
await Helpers.dropIndexesFromCollection(db.libraryReferences, [oldIndex])
}
const rollback = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.libraryReferences, [oldIndex])
await Helpers.dropIndexesFromCollection(db.libraryReferences, [newIndex])
}
export default {
tags,
migrate,
rollback,
}