mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #9800 from overleaf/msm-audit-indices
[web/scripts] Add missing indices to audit log collections GitOrigin-RevId: 4c03d7402976ec6bc7718c94bfa32d2a2f529be8
This commit is contained in:
parent
aefcf3c8bc
commit
9a3b5f1c76
1 changed files with 41 additions and 0 deletions
|
@ -0,0 +1,41 @@
|
|||
const Helpers = require('./lib/helpers')
|
||||
|
||||
exports.tags = ['server-ce', 'server-pro', 'saas']
|
||||
|
||||
const projectIndexes = [
|
||||
{
|
||||
key: {
|
||||
projectId: 1,
|
||||
},
|
||||
name: 'project_id_1',
|
||||
},
|
||||
]
|
||||
|
||||
const userIndexes = [
|
||||
{
|
||||
key: {
|
||||
userId: 1,
|
||||
},
|
||||
name: 'user_id_1',
|
||||
},
|
||||
]
|
||||
|
||||
exports.migrate = async client => {
|
||||
const { db } = client
|
||||
await Helpers.addIndexesToCollection(
|
||||
db.projectAuditLogEntries,
|
||||
projectIndexes
|
||||
)
|
||||
await Helpers.addIndexesToCollection(db.userAuditLogEntries, userIndexes)
|
||||
}
|
||||
|
||||
exports.rollback = async client => {
|
||||
const { db } = client
|
||||
await Promise.all([
|
||||
Helpers.dropIndexesFromCollection(
|
||||
db.projectAuditLogEntries,
|
||||
projectIndexes
|
||||
),
|
||||
Helpers.dropIndexesFromCollection(db.userAuditLogEntries, userIndexes),
|
||||
])
|
||||
}
|
Loading…
Reference in a new issue