Created
March 9, 2022 23:54
-
-
Save japharr/204c121d98ef805a657afa9615c4b901 to your computer and use it in GitHub Desktop.
Update MongoDb document's field to lowercase
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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