Skip to content

Instantly share code, notes, and snippets.

@ernestohs
Created February 20, 2016 21:59
Show Gist options
  • Save ernestohs/95ef3d11ce393a6c85a7 to your computer and use it in GitHub Desktop.
Save ernestohs/95ef3d11ce393a6c85a7 to your computer and use it in GitHub Desktop.
MongoDB (function): Convert a field from String to Date
db.MyCollection.find({ MyFieldDate: { $type: 'string' }}).forEach(function (item) {
item.MyFieldDate = new Date(item.MyFieldDate);
db.MyCollection.save(item);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment