mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
eef5cd00e3
[migrations] delete unused collections and properly apply saml indexes GitOrigin-RevId: eafcde98cbb603c275986a5bca708b9f8221877f
11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
const Helpers = require('./lib/helpers')
|
|
|
|
exports.tags = ['saas']
|
|
|
|
exports.migrate = async client => {
|
|
await Helpers.dropCollection('projectImportBatchRecords')
|
|
}
|
|
|
|
exports.rollback = async client => {
|
|
// can't really do anything here
|
|
}
|