mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
99fe2eca51
Add migrations for CE/SP, run scripts for deleted files and docs GitOrigin-RevId: e425a8d929a4aefdc6f61cff636fb5a1b4c67dce
13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
const runScript = require('../scripts/back_fill_doc_name_for_deleted_docs.js')
|
|
|
|
exports.tags = ['server-ce', 'server-pro', 'saas']
|
|
|
|
exports.migrate = async client => {
|
|
const options = {
|
|
performCleanup: true,
|
|
letUserDoubleCheckInputsFor: 10,
|
|
}
|
|
await runScript(options)
|
|
}
|
|
|
|
exports.rollback = async client => {}
|