aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/associations/preloader/belongs_to.rb
blob: 62df4f553022432004d2a213405178c679839fa9 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             



                                                    
                                
                                                             
           



         
# frozen_string_literal: true

module ActiveRecord
  module Associations
    class Preloader
      class BelongsTo < SingularAssociation #:nodoc:
        def association_key_name
          options[:primary_key] || klass && klass.primary_key
        end
      end
    end
  end
end