Say I have two models of an existing Rails 3 application that I want to create an association for:
User
AccountType
I want to create an association such that I can do:
User.account_type
AccountType.users
So a user has a single account_type, and a account type has 0 or many users.
At the db level, the user will have a account_type_id and the AccountType table will not have any association related columns for User.
So my first step would be to write a test right? So in both of my user_spec.rb and account_type_spec.rb I should create a simple test to see if it has the proxy class .account_type an account_type.users exist right? anything else?
Modify the User.rb model and add belongs_to :AccountType, and in AccountType.rb add a has_many right?
Create a migration script, do I just add account_type_id or do I use a special way to reference the AccountType?
AccountType.usersoraccount_type.users? Since, you said you're establishing association for anAccountTypeobject to have many users ofUsermodel then, you needaccount_type_idcolumn inuserstable. And You have to write a methodusersofAccountTypemodel if you want to achieve something like:AccountType.users. Are you sure what you want out of relationships? Check this link for a better understanding of associations in rails: guides.rubyonrails.org/association_basics.html – Surya Apr 2 '12 at 5:26