method
create_has_many_reflection
create_has_many_reflection(association_id, options, &extension)
private
Hide source
# File activerecord/lib/active_record/associations.rb, line 1740 def create_has_many_reflection(association_id, options, &extension) options.assert_valid_keys(valid_keys_for_has_many_association) options[:extend] = create_extension_modules(association_id, extension, options[:extend]) create_reflection(:has_many, association_id, options, self) end