overleaf/services/web/migrations/20190912145030_create_templates_indexes.mjs
Liangjun Song 7258ddcf02 Merge pull request #20770 from overleaf/ls-drop-unused-collections
drop unused collections

GitOrigin-RevId: 4b079f15dca349ef6a5aed8d9dcb35478819c2ce
2024-10-14 11:03:59 +00:00

55 lines
1 KiB
JavaScript

/* eslint-disable no-unused-vars */
import Helpers from './lib/helpers.mjs'
import mongodb from '../app/src/infrastructure/mongodb.js'
const { getCollectionInternal } = mongodb
const tags = ['server-pro', 'saas']
const indexes = [
{
unique: true,
key: {
project_id: 1,
},
name: 'project_id_1',
},
{
key: {
user_id: 1,
},
name: 'user_id_1',
},
{
key: {
name: 1,
},
name: 'name_1',
},
]
async function getCollection() {
// NOTE: This is a stale collection, it will get dropped in a later migration.
return await getCollectionInternal('templates')
}
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,
}