After using the dropIndexes() command on your collection, one index remains.What can you do to drop the the remaining index?
Use dropIndexes({all:1}) with the all parameter.
The required_id index cannot be deleted.
Call dropIndex({"id":1}) to force its removal.
Call dropIndex({"id"}) to force its removal.