mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
74f44e655a
Move project/user audit logs to their own collections GitOrigin-RevId: f6f89b3e2815c0fe5691a79eceb35b77b3c370d8
28 lines
714 B
JavaScript
28 lines
714 B
JavaScript
const Helpers = require('./lib/helpers')
|
|
|
|
exports.tags = ['server-ce', 'server-pro', 'saas']
|
|
|
|
const indexes = [
|
|
{
|
|
// expire after 2.5 years
|
|
expireAfterSeconds: 60 * 60 * 24 * 365 * 2.5,
|
|
key: {
|
|
timestamp: 1,
|
|
},
|
|
name: 'timestamp_1',
|
|
},
|
|
]
|
|
|
|
exports.migrate = async client => {
|
|
const { db } = client
|
|
await Helpers.addIndexesToCollection(db.projectAuditLogEntries, indexes)
|
|
await Helpers.addIndexesToCollection(db.userAuditLogEntries, indexes)
|
|
}
|
|
|
|
exports.rollback = async client => {
|
|
const { db } = client
|
|
await Promise.all([
|
|
Helpers.dropIndexesFromCollection(db.userAuditLogEntries, indexes),
|
|
Helpers.dropIndexesFromCollection(db.projectAuditLogEntries, indexes),
|
|
])
|
|
}
|