Merge pull request #29697 from overleaf/ac-td-user-audit-log-index

Add migration to improve index on userAuditLogEntries

GitOrigin-RevId: c4a606e1ab7299008baa3b05ac1fb8ca18036fae
This commit is contained in:
Tim Down
2026-01-13 10:17:45 +00:00
committed by Copybot
parent 27950a42b4
commit 2b39beab80
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
import Helpers from './lib/helpers.mjs'
const oldIndex = {
key: {
userId: 1,
},
name: 'user_id_1',
}
const newIndex = {
key: {
userId: 1,
timestamp: -1,
},
name: 'userId_1_timestamp_-1',
}
const tags = ['server-ce', 'server-pro', 'saas']
const migrate = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.userAuditLogEntries, [newIndex])
await Helpers.dropIndexesFromCollection(db.userAuditLogEntries, [oldIndex])
}
const rollback = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.userAuditLogEntries, [oldIndex])
await Helpers.dropIndexesFromCollection(db.userAuditLogEntries, [newIndex])
}
export default {
tags,
migrate,
rollback,
}