Skip to content

Instantly share code, notes, and snippets.

@Imater
Created December 12, 2014 06:06
Show Gist options
  • Save Imater/01c6a25f51347fe916ff to your computer and use it in GitHub Desktop.
Save Imater/01c6a25f51347fe916ff to your computer and use it in GitHub Desktop.
Mongodb all value to LowerCase
db.MaterialPropertyValue.find().forEach(
function(e) {
db.MaterialPropertyValue.update({_id: e._id}, {$set: {Value: e.Value.toLowerCase() } });
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment