how can I do bulk update with the Mongoid?
Specifically, copy one existing field to another of the same document.
Product.collection.command("db.products.find(
{gender : { $ne : null } }
).forEach(function(doc) {
doc.archive_gender = doc.gender;
doc.gender = null;
db.products.save(doc);
})"
)
Cheers, Khoa.