I need to create a Laravel migration for a unique key on multiple fields. The Mongodb command i want to map is something like this:
db.collection.ensureIndex( { a: 1, b: 1 }, { unique: true })
Is it possible with jenssegers/mongodb or with another package?