mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
|
const Helpers = require('./lib/helpers')
|
||
|
|
||
|
exports.tags = ['saas']
|
||
|
|
||
|
exports.migrate = async client => {
|
||
|
const { db } = client
|
||
|
await Helpers.dropCollection(db, 'projectImportFailures')
|
||
|
}
|
||
|
|
||
|
exports.rollback = async client => {
|
||
|
// can't really do anything here
|
||
|
}
|