20210727123346_ce_sp_backfill_deleted_files.mjs 360 B

1234567891011121314
  1. const tags = ['server-ce', 'server-pro', 'saas']
  2. const migrate = async client => {
  3. // Skip back-filling. The deletedFiles collection will be deleted in a following migration.
  4. // The projects.deletedFiles array will be purged as part of the later migration as well.
  5. }
  6. const rollback = async client => {}
  7. export default {
  8. tags,
  9. migrate,
  10. rollback,
  11. }