Skip to content

Instantly share code, notes, and snippets.

@Chizh
Created January 12, 2016 18:58
Show Gist options
  • Save Chizh/113abc87a4ddebe0a9ca to your computer and use it in GitHub Desktop.
Save Chizh/113abc87a4ddebe0a9ca to your computer and use it in GitHub Desktop.
var x = 0;
db.partnerUserEmail.find().forEach(function(doc) {
x++;
db.partnerUserEmail.update({_id:doc._id}, {$unset:{"CustomData":1}})
if (x%1000 == 0)
print(x);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment