Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save belukov/3195942c4ae59cf1d2dc3ea81795c1f3 to your computer and use it in GitHub Desktop.

Select an option

Save belukov/3195942c4ae59cf1d2dc3ea81795c1f3 to your computer and use it in GitHub Desktop.
db.getCollectionNames().forEach( function (collection) {
print('col: ', collection);
if(0 === collection.indexOf('acl_allows_')) {
db[collection].drop();
print("drop'd");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment