20251110120830_drop_docHistoryIndex_collection.mjs 266 B

1234567891011121314151617
  1. import Helpers from './lib/helpers.mjs'
  2. const tags = ['saas']
  3. const migrate = async () => {
  4. await Helpers.dropCollection('docHistoryIndex')
  5. }
  6. const rollback = async () => {
  7. // Can't really do anything here
  8. }
  9. export default {
  10. tags,
  11. migrate,
  12. rollback,
  13. }