overleaf/services/web/migrations/20200110183327_brandVarationIdIndex.js

25 lines
488 B
JavaScript
Raw Normal View History

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)
}
}