Sha256: c33d195b98db5827a5a2db4b0b08ad8a0a0411c2996134a34c8c01c7ccf21e68
Contents?: true
Size: 441 Bytes
Versions: 46
Compression:
Stored size: 441 Bytes
Contents
module ActiveRecord::Associations::Builder class HasMany < CollectionAssociation #:nodoc: def macro :has_many end def valid_options super + [:primary_key, :dependent, :as, :through, :source, :source_type, :inverse_of, :counter_cache, :join_table, :foreign_type] end def self.valid_dependent_options [:destroy, :delete_all, :nullify, :restrict_with_error, :restrict_with_exception] end end end
Version data entries
46 entries across 45 versions & 8 rubygems