新增字段
对demo collection集合增加字段
db.getCollection('demo').update({},{$set:{"field":true}},false,true)
删除字段
对demo collection集合删除字段
db.getCollection('xxx').update({},{$unset:{"field":""}},false,true)
对demo collection集合增加字段
db.getCollection('demo').update({},{$set:{"field":true}},false,true)
对demo collection集合删除字段
db.getCollection('xxx').update({},{$unset:{"field":""}},false,true)