mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-08 08:39:03 +02:00
b69ff9417a
Revert "Convert migration scripts to ESM" GitOrigin-RevId: ca9ddda6ddee8964f72797d3b653ef9cee6a7a49
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
|
|
}
|