mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
9e15c73228
Revert "Revert "Convert migration scripts to ESM"" GitOrigin-RevId: 0430a3cd02b9d23bf0f4573346351dcf4ee17fa6
36 lines
766 B
JavaScript
36 lines
766 B
JavaScript
import Helpers from './lib/helpers.mjs'
|
|
import mongodb from '../app/src/infrastructure/mongodb.js'
|
|
const { getCollectionInternal } = mongodb
|
|
|
|
const tags = ['saas']
|
|
|
|
const indexes = [
|
|
{
|
|
key: {
|
|
name: 1,
|
|
},
|
|
unique: true,
|
|
name: 'name_1',
|
|
},
|
|
]
|
|
|
|
async function getCollection() {
|
|
// NOTE: We do not access the splittests collection directly. Fetch it here.
|
|
return await getCollectionInternal('splittests')
|
|
}
|
|
|
|
const migrate = async client => {
|
|
const collection = await getCollection()
|
|
await Helpers.addIndexesToCollection(collection, indexes)
|
|
}
|
|
|
|
const rollback = async client => {
|
|
const collection = await getCollection()
|
|
await Helpers.dropIndexesFromCollection(collection, indexes)
|
|
}
|
|
|
|
export default {
|
|
tags,
|
|
migrate,
|
|
rollback,
|
|
}
|