const Helpers = require('./lib/helpers') exports.tags = ['saas'] const indexes = [ { key: { entityId: 1, }, name: 'entityId_1', }, ] exports.migrate = async client => { const { db } = client await Helpers.addIndexesToCollection(db.dropboxEntities, indexes) } exports.rollback = async client => { const { db } = client await Helpers.dropIndexesFromCollection(db.dropboxEntities, indexes) }