Class: ActiveRecord::Associations::Builder::HasMany

Inherits:
CollectionAssociation show all
Defined in:
lib/active_record/associations/builder/has_many.rb

Overview

:nodoc:

Constant Summary

Constants inherited from CollectionAssociation

CollectionAssociation::CALLBACKS

Instance Attribute Summary

Attributes inherited from CollectionAssociation

#block_extension, #extension_module

Attributes inherited from Association

#model, #name, #options, #reflection, #scope

Instance Method Summary collapse

Methods inherited from CollectionAssociation

#build, #define_callback, #define_readers, #define_writers, #extension_module_name, #initialize, #show_deprecation_warnings, #wrap_block_extension, #writable?

Methods inherited from Association

build, #build, #configure_dependency, #define_accessors, #define_readers, #define_writers, #initialize, #mixin, #validate_options

Constructor Details

This class inherits a constructor from ActiveRecord::Associations::Builder::CollectionAssociation

Instance Method Details

#macroObject



3
4
5
# File 'lib/active_record/associations/builder/has_many.rb', line 3

def macro
  :has_many
end

#valid_dependent_optionsObject



11
12
13
# File 'lib/active_record/associations/builder/has_many.rb', line 11

def valid_dependent_options
  [:destroy, :delete_all, :nullify, :restrict, :restrict_with_error, :restrict_with_exception]
end

#valid_optionsObject



7
8
9
# File 'lib/active_record/associations/builder/has_many.rb', line 7

def valid_options
  super + [:primary_key, :dependent, :as, :through, :source, :source_type, :inverse_of, :counter_cache]
end