mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
Co-authored-by: Ilkin Ismailov <ilkin.ismailov@overleaf.com> GitOrigin-RevId: b9770bf1612dbffef6408b5e5c15890f87696773
18 lines
261 B
JavaScript
18 lines
261 B
JavaScript
import Helpers from './lib/helpers.mjs'
|
|
|
|
const tags = ['saas']
|
|
|
|
const migrate = async () => {
|
|
await Helpers.dropCollection('docHistory')
|
|
}
|
|
|
|
const rollback = async () => {
|
|
// Can't really do anything here
|
|
}
|
|
|
|
export default {
|
|
tags,
|
|
migrate,
|
|
rollback,
|
|
}
|