mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
|
const { dropCollection } = require('./lib/helpers')
|
||
|
|
||
|
exports.tags = ['server-ce', 'server-pro', 'saas']
|
||
|
|
||
|
exports.migrate = async () => {
|
||
|
await dropCollection('docOps')
|
||
|
}
|
||
|
|
||
|
exports.rollback = async client => {
|
||
|
// there's no rollback: we can't recover the data
|
||
|
}
|