mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
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:
@@ -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,
|
||||
}
|
||||
Reference in New Issue
Block a user