Skip to content

Instantly share code, notes, and snippets.

@karantir
Created March 20, 2015 09:19
Show Gist options
  • Save karantir/b00bfb5a0eac483f9168 to your computer and use it in GitHub Desktop.
Save karantir/b00bfb5a0eac483f9168 to your computer and use it in GitHub Desktop.
Cast date type on specific field for all documents in mongodb collection
var cursor = db.<collection>.find();
while (cursor.hasNext()) {
var doc = cursor.next();
db.<collection>.update({_id : doc._id}, { $set : { <field>: new Date(doc.<field>)} })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment