overleaf/services/web/migrations/20220817120900_create_dropboxProjects_index.js

25 lines
467 B
JavaScript
Raw Normal View History

const Helpers = require('./lib/helpers')
exports.tags = ['saas']
const indexes = [
{
key: {
userId: 1,
dropboxId: 1,
},
unique: true,
name: 'userId_dropboxId_1',
},
]
exports.migrate = async client => {
const { db } = client
await Helpers.addIndexesToCollection(db.dropboxProjects, indexes)
}
exports.rollback = async client => {
const { db } = client
await Helpers.dropIndexesFromCollection(db.dropboxProjects, indexes)
}