- db.vehicle.dropIndex(“description_text”)
- db.vehicle.dropIndex({“description”:”text”})
- db.vehicle.removeIndex({“description”:”text”})
- db.vehicle.removeIndex(“description_text”)
You need to delete the index you created on the description field. Which command will accomplish this?
June 25, 2021June 25, 2021
0 Comment