method
create_has_one_through_reflection
create_has_one_through_reflection(association_id, options)
private
Hide source
# File activerecord/lib/active_record/associations.rb, line 1759 def create_has_one_through_reflection(association_id, options) options.assert_valid_keys( :class_name, :foreign_key, :remote, :select, :conditions, :order, :include, :dependent, :counter_cache, :extend, :as, :through, :source, :source_type, :validate ) create_reflection(:has_one, association_id, options, self) end