Exception if it is attempted to pass in *. Use dropIndexes() to remove all indexes instead.
import vibe.db.mongo.mongo; void test() { auto coll = connectMongoDB("127.0.0.1").getCollection("test"); auto primarykey = IndexModel() .add("name", 1) .add("primarykey", -1); coll.dropIndex(primarykey); }
Drops a single index from the collection by the index name.