instance method
create_has_many_reflection
Ruby on Rails 3.0.20
Since v2.2.3 Last seen in v3.0.20 PrivateSignature
create_has_many_reflection(association_id, options, &extension)
No documentation comment.
Parameters
-
association_idreq -
optionsreq -
extensionblock
Source
# File activerecord/lib/active_record/associations.rb, line 1741
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
Defined in activerecord/lib/active_record/associations.rb line 1741
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Associations::ClassMethods