mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
fa5804a3cf
[web] add script for back filling rev=1 for old (deleted) docs GitOrigin-RevId: 62f5b773fb83ddbf9bb202a592ce2e8f33b5e6b2
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
const runScript = require('../scripts/back_fill_doc_rev')
|
|
|
|
exports.tags = ['server-ce', 'server-pro']
|
|
|
|
exports.migrate = async () => {
|
|
await runScript(false)
|
|
}
|
|
|
|
exports.rollback = async () => {}
|