mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
d4551dc7ce
[web] add migration for convert_archived_state script GitOrigin-RevId: aeea3601a0c5f96e978c3f2a85458687d6d6678e
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
const runScript = require('../scripts/convert_archived_state')
|
|
|
|
exports.tags = ['server-ce', 'server-pro']
|
|
|
|
exports.migrate = async () => {
|
|
await runScript('FIRST,SECOND')
|
|
}
|
|
|
|
exports.rollback = async () => {}
|