mongoDB add filed to collection code example

Example 1: how to add a new propety into all documents in mongodb

db.users.update({}, { "$set" : { "age": 30 }}, false,true)
// users: collection name, age: new property
//false it's upsert argument, it tells mongo to not insert a new document when no match is found
// true it's multi argument, it tells mongo to update multiple documents that meet the query criteria

Example 2: add property to all documents mongo

db.myCollection.update({}, {$set: {"isOpen": false}}, false, true)