Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Maxhodges/1a95b2b43dade44a79dbe06238ff1485 to your computer and use it in GitHub Desktop.
Save Maxhodges/1a95b2b43dade44a79dbe06238ff1485 to your computer and use it in GitHub Desktop.
update mongodb field type
db.adhocPackages.find().forEach( function(doc) {
doc.japanPostCountryRegionCode= new NumberInt(doc.japanPostCountryRegionCode);
db.adhocPackages.save(obj);
} )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment