Skip to content

Instantly share code, notes, and snippets.

@daninfpj
Last active August 29, 2015 14:15
Show Gist options
  • Save daninfpj/191380084d2d040ff4c5 to your computer and use it in GitHub Desktop.
Save daninfpj/191380084d2d040ff4c5 to your computer and use it in GitHub Desktop.
MONGOID rename columns
## 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