Fri, 14 Oct 2016 10:59 am
#mongodb rename nama kolom
db.students.updateMany(
{},
{
$rename: { "oldname": "newname" }
}
)