如何使用 Mongoid 进行批量更新?
具体来说,将一个现有字段复制到同一文档的另一个字段。
Product.collection.command("db.products.find(
{gender : { $ne : null } }
).forEach(function(doc) {
doc.archive_gender = doc.gender;
doc.gender = null;
db.products.save(doc);
})"
)
干杯,科亚。