quosdolorem
Version:
The MongoDB Shell
16 lines (15 loc) • 403 B
JavaScript
// before
db.coll.deleteMany({});
db.coll.insertOne({category: "cat1", v: 1});
db.coll.insertOne({category: "cat2", v: 2});
db.coll.insertOne({category: "cat2", v: 3});
db.coll.createIndex({category: 1}, {collation: {locale: "fr"}});
db.coll.createIndex({v: 1});
// command
db.coll.dropIndex('category_1');
// command
db.coll.dropIndex({v: 1});
// command
db.coll.getIndexes();
// clear
db.coll.drop();