Created
July 22, 2016 19:36
-
-
Save icaromh/4bdc96c9a119c8fe220b1c1940f6f2db to your computer and use it in GitHub Desktop.
Parse String Dates to really Date format - MongodB
This file contains 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.ClockTime.find().forEach(function(doc) { | |
doc.ClockInTime=new Date(doc.ClockInTime); | |
db.ClockTime.save(doc); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment