mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
877638f09c
* [web/scripts] Process users' projects with `promiseMapWithLimit()` * [web/scripts] Added several optimisations to migration script GitOrigin-RevId: 0dd221a3a8b4bb64f412636faa17e81249ca6c4f
13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
const runScript = require('../scripts/migrate_audit_logs.js')
|
|
|
|
exports.tags = ['server-ce', 'server-pro']
|
|
|
|
exports.migrate = async () => {
|
|
const options = {
|
|
writeConcurrency: 5,
|
|
dryRun: false,
|
|
}
|
|
await runScript(options)
|
|
}
|
|
|
|
exports.rollback = async () => {}
|