Last active
August 29, 2015 14:15
-
-
Save daninfpj/191380084d2d040ff4c5 to your computer and use it in GitHub Desktop.
MONGOID rename columns
This file contains hidden or 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
## RENAME FIELDS | |
Model.collection.find({}).update({ '$rename' => { 'old' => 'new' } }, multi: true, safe: true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment