Answers for "adding a check flag on collection"

0

adding a check flag on collection

db.your_collection.update({},
                          {$set : {"new_field":1}},
                          {upsert:false,
                          multi:true})
Posted by: Guest on August-17-2021

Browse Popular Code Answers by Language