Skip to content

Instantly share code, notes, and snippets.

View OctavioBR's full-sized avatar
⌨️
Working from home

Octávio Richter OctavioBR

⌨️
Working from home
View GitHub Profile
regExp = /collectionPrefix_*/;
db.getCollectionNames().filter(function(name){
return name.match(regExp)
}).forEach(function(name){
db.getCollection(name).drop()
});