Adding a Model Reference to existing Rails model

后端 未结 3 1820
情深已故
情深已故 2021-02-01 04:15

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\

3条回答
  •  耶瑟儿~
    2021-02-01 04:32

    If you are using edge rails (4.0) you can use:

    rails generate migration AddAddressRefToContacts address:references
    

    As you can see by the docs.

提交回复
热议问题