Skip to content

Instantly share code, notes, and snippets.

@aaronwhite
Created June 27, 2010 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaronwhite/454501 to your computer and use it in GitHub Desktop.
Save aaronwhite/454501 to your computer and use it in GitHub Desktop.
> db.users.find();
{ "_id" : ObjectId("1145184c5f8f127526010000"), "script_settings" : { "b2460e4c73e106ba93010000" : { } }, "scripts" : [ "b2460e4ca68d0cba93020000", "b2460e4c73e106ba93010000" ]}
> db.users.update({_id : "1145184c5f8f127526010000"},
... {
... $set :
... {
... "script_settings.b2460e4c73e106ba93010000" :
... {
... block : ["hi"]
... }
... }
... });
> db.users.find();
{ "_id" : ObjectId("1145184c5f8f127526010000"), "script_settings" : { "b2460e4c73e106ba93010000" : { } }, "scripts" : [ "b2460e4ca68d0cba93020000", "b2460e4c73e106ba93010000" ]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment