mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
f97e64ab52
[web] run audit log migration in SaaS/dev-env GitOrigin-RevId: 9e0c5917102cef018ae6078a826a145a2181163f
14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
const runScript = require('../scripts/migrate_audit_logs.js')
|
|
|
|
exports.tags = ['server-ce', 'server-pro', 'saas']
|
|
|
|
exports.migrate = async () => {
|
|
const options = {
|
|
letUserDoubleCheckInputsFor: 10,
|
|
writeConcurrency: 5,
|
|
dryRun: false,
|
|
}
|
|
await runScript(options)
|
|
}
|
|
|
|
exports.rollback = async () => {}
|