# 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