Skip to content

Instantly share code, notes, and snippets.

@nurfarazi
Created August 21, 2018 07:00
Show Gist options
  • Save nurfarazi/d828398c0c598056d149fda3d5cb8fc7 to your computer and use it in GitHub Desktop.
Save nurfarazi/d828398c0c598056d149fda3d5cb8fc7 to your computer and use it in GitHub Desktop.
db.person.find().snapshot().forEach(
function (elem) {
db.person.update(
{
_id: elem._id
},
{
$set: {
name: elem.firstname + ' ' + elem.lastname
}
}
);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment