mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-27 13:11:03 +00:00
14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
|
const runScript = require('../scripts/migrate_audit_logs.js')
|
||
|
|
||
|
exports.tags = ['server-ce', 'server-pro']
|
||
|
|
||
|
exports.migrate = async () => {
|
||
|
const options = {
|
||
|
writeConcurrency: 10,
|
||
|
dryRun: false,
|
||
|
}
|
||
|
await runScript(options)
|
||
|
}
|
||
|
|
||
|
exports.rollback = async () => {}
|