mirror of
https://github.com/github/rails.git
synced 2026-01-09 22:58:09 -05:00
5 lines
189 B
Ruby
5 lines
189 B
Ruby
class DogLover < ActiveRecord::Base
|
|
has_many :trained_dogs, :class_name => "Dog", :foreign_key => :trainer_id
|
|
has_many :bred_dogs, :class_name => "Dog", :foreign_key => :breeder_id
|
|
end
|