aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/associations/preloader/has_one.rb
blob: d87abf630f293e38bc0099cc83268f0bcd657b31 (plain) (tree)
1
2
3
4
5
6

                             



                                                 






                                              



         
# frozen_string_literal: true

module ActiveRecord
  module Associations
    class Preloader
      class HasOne < SingularAssociation #:nodoc:
        def association_key_name
          reflection.foreign_key
        end

        def owner_key_name
          reflection.active_record_primary_key
        end
      end
    end
  end
end