mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-08 02:22:52 +00:00
11 lines
264 B
JavaScript
11 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
|
|
}
|