aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
diff options
context:
space:
mode:
authorMohammad El-Abid <mohammad.elabid@gmail.com>2011-05-26 00:54:51 -0400
committerMohammad El-Abid <mohammad.elabid@gmail.com>2011-05-26 00:54:51 -0400
commitec44763f03b49e8c6e3bff71772ba32863a01306 (patch)
treec48304d17a201ba3c5d4b86af9caf08cebe669a6 /activerecord/lib/active_record/associations.rb
parentbf9272b9d42656efc2fd935c6a4108c8e0f306d0 (diff)
downloadrails-ec44763f03b49e8c6e3bff71772ba32863a01306.tar.gz
rails-ec44763f03b49e8c6e3bff71772ba32863a01306.tar.bz2
rails-ec44763f03b49e8c6e3bff71772ba32863a01306.zip
Removes the restriction on primary key when joining in a habtm && test that it was properly removed
Diffstat (limited to 'activerecord/lib/active_record/associations.rb')
-rw-r--r--activerecord/lib/active_record/associations.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index 1c7209e64e..a0a1ff23db 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -76,12 +76,6 @@ module ActiveRecord
end
end
- class HasAndBelongsToManyAssociationWithPrimaryKeyError < ActiveRecordError #:nodoc:
- def initialize(reflection)
- super("Primary key is not allowed in a has_and_belongs_to_many join table (#{reflection.options[:join_table]}).")
- end
- end
-
class HasAndBelongsToManyAssociationForeignKeyNeeded < ActiveRecordError #:nodoc:
def initialize(reflection)
super("Cannot create self referential has_and_belongs_to_many association on '#{reflection.class_name rescue nil}##{reflection.name rescue nil}'. :association_foreign_key cannot be the same as the :foreign_key.")