添加列
db.getCollection('表名').update({}, {$set: {content:""}}, {multi: 1})
删除列
db.getCollection('表名').update({},{$unset:{'content':''}},false, true)
添加列
db.getCollection('表名').update({}, {$set: {content:""}}, {multi: 1})
删除列
db.getCollection('表名').update({},{$unset:{'content':''}},false, true)