Skip to content

Instantly share code, notes, and snippets.

@aaronthorp
Last active January 2, 2016 08:49
Show Gist options
  • Save aaronthorp/8278596 to your computer and use it in GitHub Desktop.
Save aaronthorp/8278596 to your computer and use it in GitHub Desktop.
MongoDB For-Each Loop Script
db.organisations.find({}).forEach(function(doc) {
doc.users = [
{_id: doc.user}
];
db.organisations.save(doc);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment