Skip to content

Instantly share code, notes, and snippets.

@cristopher-rodrigues
Last active December 17, 2015 14:33
Show Gist options
  • Save cristopher-rodrigues/2ab28633125c2b1dc0ea to your computer and use it in GitHub Desktop.
Save cristopher-rodrigues/2ab28633125c2b1dc0ea to your computer and use it in GitHub Desktop.
mongo save usign self value
db.collection.find({}).snapshot().forEach( function (obj) {
obj.prop1 = obj.prop2;
db.collection.save(obj);
});
db.collection.find({}).snapshot().forEach( function (obj) {
obj.prop1 = parseInt(obj.prop1);
db.collection.save(obj);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment