| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /* eslint-disable no-unused-vars */
- import Helpers from './lib/helpers.mjs'
- import mongodb from './lib/mongodb.mjs'
- const { getCollectionInternal } = mongodb
- const tags = ['saas']
- const indexes = [
- {
- key: {
- v1_project_id: 1,
- },
- name: 'v1_project_id_1',
- },
- ]
- async function getCollection() {
- // NOTE: This is a stale collection, it will get dropped in a later migration.
- return await getCollectionInternal('projectImportFailures')
- }
- const migrate = async client => {
- const collection = await getCollection()
- await Helpers.addIndexesToCollection(collection, indexes)
- }
- const rollback = async client => {
- const collection = await getCollection()
- try {
- await Helpers.dropIndexesFromCollection(collection, indexes)
- } catch (err) {
- console.error('Something went wrong rolling back the migrations', err)
- }
- }
- export default {
- tags,
- migrate,
- rollback,
- }
|