Skip to content

Instantly share code, notes, and snippets.

@tomajaa
Last active December 28, 2015 10:09
Show Gist options
  • Save tomajaa/7483996 to your computer and use it in GitHub Desktop.
Save tomajaa/7483996 to your computer and use it in GitHub Desktop.
email downcase query
db.trails.find().forEach(
function(downcase) {
downcase.email_address = downcase.email_address.toLowerCase();
trails.save(downcase);
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment