Skip to content

Instantly share code, notes, and snippets.

@japharr
Created March 9, 2022 23:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save japharr/204c121d98ef805a657afa9615c4b901 to your computer and use it in GitHub Desktop.
Save japharr/204c121d98ef805a657afa9615c4b901 to your computer and use it in GitHub Desktop.
Update MongoDb document's field to lowercase
db.myCollection.find().forEach(
function(e) {
e.username = e.username.toLowerCase();
db.myCollection.save(e);
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment