2015-08-13

MongoDB - How to drop a collection (completely remove a collection/table)

db.COLLECTION_NAME.drop();

// Indexes are lost.
// Returns false if the collection is not found.