mongoDb

1、 给表添加字段

db.table.update({}, {$set: {"key": "value"}})

2、 删除一个字段

db.table.update({},{$unset: {"key": "value"}})

参考
mongoDb 给表添加+ 删除字段