I\'d like to know the \"proper\" way to approach adding a relation between two existing classes in Rails 3.
Given existing models: Clown & Rabbit
I\
If you are using edge rails (4.0) you can use:
rails generate migration AddAddressRefToContacts address:references
As you can see by the docs.