overleaf/services/web/migrations/20200110183327_brandVarationIdIndex.js
Shane Kilkelly 4b9aa97ea1 Merge pull request #4303 from overleaf/sk-tag-saas-migrations
Migrations: tag migrations with relevant environment
GitOrigin-RevId: ad6c3bea19d3c21a1fdae58e09c861a3173c792b
2021-07-28 02:05:49 +00:00

24 lines
488 B
JavaScript

const Helpers = require('./lib/helpers')
exports.tags = ['saas']
const indexes = [
{
key: {
brandVariationId: 1,
},
name: 'brandVariationId_1',
},
]
exports.migrate = async ({ db }) => {
await Helpers.addIndexesToCollection(db.projects, indexes)
}
exports.rollback = async ({ db }) => {
try {
await Helpers.dropIndexesFromCollection(db.projects, indexes)
} catch (err) {
console.error('Something went wrong rolling back the migrations', err)
}
}