UTF-8
0
Q:

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
0
db.myCollection.update({}, {$set: {"isOpen": false}}, false, true)
0

New to Communities?

Join the community