Skip to content

Instantly share code, notes, and snippets.

@wyattjoh
Last active February 13, 2017 22:24
Show Gist options
  • Select an option

  • Save wyattjoh/4efe8476e53684fe1e9d8a7021cbff62 to your computer and use it in GitHub Desktop.

Select an option

Save wyattjoh/4efe8476e53684fe1e9d8a7021cbff62 to your computer and use it in GitHub Desktop.
db.users.find({}).forEach(function(user) {
db.users.update({id: user.id}, {$set: {
username: user.displayName,
lowercaseUsername: user.displayName
}});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment