Mongo/Collections
From charlesreid1
Mongo Collections
Collections are the NoSQL equivalent to tables.
Drop collection
Drop collection from mongo shell
From the shell, call the drop() method on the collection you want to drop:
> db.collection.drop()
Collections are the NoSQL equivalent to tables.
From the shell, call the drop() method on the collection you want to drop:
> db.collection.drop()