method

create_has_many_reflection

create_has_many_reflection(association_id, options, &extension)
private

No documentation available.

# File activerecord/lib/active_record/associations.rb, line 1742
        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