Sha256: 349b27375474a2e728223a39f1e8eca6999ad3863a200360fe8864f792bbe5f0

Contents?: true

Size: 1.16 KB

Versions: 10

Compression:

Stored size: 1.16 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 collection?
          true
        end

        def association_class
          Associations::BelongsToManyAssociation
        end

        def foreign_key
          @foreign_key ||= options[:primary_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[:foreign_key] || derive_primary_key
        end

        private

          def derive_foreign_key
            klass.primary_key
          end

          def derive_primary_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

10 entries across 10 versions & 1 rubygems

Version Path
torque-postgresql-2.0.2 lib/torque/postgresql/reflection/belongs_to_many_reflection.rb
torque-postgresql-1.1.6 lib/torque/postgresql/reflection/belongs_to_many_reflection.rb
torque-postgresql-1.1.5 lib/torque/postgresql/reflection/belongs_to_many_reflection.rb
torque-postgresql-2.0.1 lib/torque/postgresql/reflection/belongs_to_many_reflection.rb
torque-postgresql-2.0.0 lib/torque/postgresql/reflection/belongs_to_many_reflection.rb
torque-postgresql-1.1.4 lib/torque/postgresql/reflection/belongs_to_many_reflection.rb
torque-postgresql-1.1.3 lib/torque/postgresql/reflection/belongs_to_many_reflection.rb
torque-postgresql-1.1.2 lib/torque/postgresql/reflection/belongs_to_many_reflection.rb
torque-postgresql-1.1.1 lib/torque/postgresql/reflection/belongs_to_many_reflection.rb
torque-postgresql-1.1.0 lib/torque/postgresql/reflection/belongs_to_many_reflection.rb