mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 18:20:09 +02:00
[migrations] delete unused collections and properly apply saml indexes GitOrigin-RevId: eafcde98cbb603c275986a5bca708b9f8221877f
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
const Helpers = require('./lib/helpers')
|
|
|
|
exports.tags = ['saas']
|
|
|
|
exports.migrate = async client => {
|
|
await Helpers.dropCollection('projectImportFailures')
|
|
}
|
|
|
|
exports.rollback = async client => {
|
|
// can't really do anything here
|
|
}
|