Ruby on Rails Monday, March 2, 2015

Hi,
I've generated 2 models (Player and Trainer) with the "generate scaffold" command with the following tables:
Player 
name:string
last_name:string
trainer:string
team:string

Trainer
name:string
last_name:string
phone_number:string
team:string

I've set the association in the Player model class (belongs_to :trainer) and in the Trainer model class (has_many :player).
How to make this relationship effective? Should I just  type rails generate migration ? Should I add some arguments?
I want the trainer to be connected to the player . Thank you for your assitance. I really appreciate.
Sandro

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/2ab7d242-497b-4acc-82e6-e37c822641d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment