Skip to content

Instantly share code, notes, and snippets.

@ovaillancourt
Created April 11, 2012 21:40
Show Gist options
  • Save ovaillancourt/2362888 to your computer and use it in GitHub Desktop.
Save ovaillancourt/2362888 to your computer and use it in GitHub Desktop.
Adding a field to all sub-documents of a certain collection.
//Mongodb shell script
db.MyCollection.update(
{'comments._id' : {$exists : true}},
{$set : {'comments.$.author': PutYourValueHere}},
false,
true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment