Let's say I have a Car and Driver dbs but for some records there is no driver for a car. How do I map the relation?
Here's the code I got and it causes an error of "NoMethodError: undefined method `each' for nil:NilClass"
class Car < ActiveRecord::Base
has_one :driver, :foreign_key => :dr_code, :primary_key => :ca_master_code
end
class Driver < ActiveRecord::Base
belongs_to :car, :foreign_key => :dr_code, :primary_key => :ca_master_code
end
Please advise.