overleaf/services/web/migrations/20220811111800_create_dropboxEntities_index.mjs
Liangjun Song 492fe24a75 Merge pull request #20480 from overleaf/ls-convert-migration-scripts-to-esm
Convert migration scripts to ESM

GitOrigin-RevId: 46f04a1837ebb8244b1156af2d58162d024b6b2d
2024-10-14 10:56:57 +00:00

28 lines
467 B
JavaScript

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