Exception: ActiveRecord::HasAndBelongsToManyAssociationForeignKeyNeeded

Inherits:
ActiveRecordError show all
Defined in:
activerecord/lib/active_record/associations.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(reflection) ⇒ HasAndBelongsToManyAssociationForeignKeyNeeded

Returns a new instance of HasAndBelongsToManyAssociationForeignKeyNeeded.



80
81
82
# File 'activerecord/lib/active_record/associations.rb', line 80

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.")
end