Your are here: Home // Posts Tagged With associations
Model Associations
Podcast: Play in new window
| Download
ActiveRecord models are based upon tables in relational databases. This, of course, means that they can be relational. Models can associate in three main ways: one to many, one to one, and many to many.
One to many is usually achieved by calling has_many on the model representing the “one” to state that it “has many” of its counterparts. The model...

