overleaf/services/web/migrations/20190912145017_create_oauthAuthorizationCodes_indexes.mjs

38 lines
665 B
JavaScript
Raw Normal View History

/* eslint-disable no-unused-vars */
import Helpers from './lib/helpers.mjs'
const tags = ['saas']
const indexes = [
{
unique: true,
key: {
authorizationCode: 1,
},
name: 'authorizationCode_1',
},
]
const migrate = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.oauthAuthorizationCodes, indexes)
}
const rollback = async client => {
const { db } = client
try {
await Helpers.dropIndexesFromCollection(db.oauthAuthorizationCodes, indexes)
} catch (err) {
console.error('Something went wrong rolling back the migrations', err)
}
}
export default {
tags,
migrate,
rollback,
}