Sha256: f1665d2c8d0575c7ce3a0bd261dc98c653b892c20129bce9fc49edd0d0a79d28
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
Contents
module Torque module PostgreSQL module Reflection class BelongsToManyReflection < ::ActiveRecord::Reflection::AssociationReflection def macro :belongs_to_many end def connected_through_array? true end def belongs_to? true end def collection? true end def association_class Associations::BelongsToManyAssociation end def foreign_key @foreign_key ||= options[:foreign_key] || derive_foreign_key.freeze end def association_foreign_key @association_foreign_key ||= foreign_key end def active_record_primary_key @active_record_primary_key ||= options[:primary_key] || derive_primary_key end def join_primary_key(*) active_record_primary_key end def join_foreign_key foreign_key end private def derive_primary_key klass.primary_key end def derive_foreign_key "#{name.to_s.singularize}_ids" end end ::ActiveRecord::Reflection.const_set(:BelongsToManyReflection, BelongsToManyReflection) ::ActiveRecord::Reflection::AssociationReflection::VALID_AUTOMATIC_INVERSE_MACROS .push(:belongs_to_many) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
torque-postgresql-2.0.3 | lib/torque/postgresql/reflection/belongs_to_many_reflection.rb |