# How to ensure/drop indices?
PREREQUISITE
Ensure Indices
To ensure indices of a specific collection, run command
collection ensureIndices <collectionName>[Lottery] $ LotteryMongo/collection ensureIndices LotteryTo ensure indices of all collections defined inside a mongo module, run command
collection ensureAllIndices[Lottery] $ LotteryMongo/collection ensureAllIndicesTo ensure indices of all collections in the project, run command
ensureAllIndices[Lottery] $ ensureAllIndices
Drop Indices
To drop indices of a specific collection, run command
collection dropIndices <collectionName>[Lottery] $ LotteryMongo/collection dropIndices LotteryTo ensure indices of all collections defined inside a mongo module, run command
collection dropAllIndices[Lottery] $ LotteryMongo/collection dropAllIndicesTo drop indices of all collections in the project, run command
dropAllIndices[Lottery] $ dropAllIndices