aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/preloader/has_one.rb
blob: e58fa351b06c42a024715237ed526d167a7be81d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

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