Let's say I have an association where User has and belongs to many Roles. When I destroy the user, is the record in the join table automatically removed as well? Or do I need to use :dependent => :destroy? What about if I destroy a Role?

class User < ActiveRecord::Base
   has_and_belong_to_many :roles # need to use :dependent => :destroy to remove join record?
end

class Role < ActiveRecord::Base
   has_and_belong_to_many :users # need to use :dependent => :destroy to remove join record?
end
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The join table entry is removed but the Role or User is not removed. You can't add a dependent destroy clause to has_and_belongs_to_many, but you can add them to the relations in your join model if you want to. For example to destroy a role when the associated join table entry is removed you would do the following:

class RolesUser < ActiveRecord::Base
  belongs_to :role, :dependent => :destroy
  belongs_to :user
end
link|improve this answer
I thought one of the points of HABTM was that there IS no intermediate model. So this wouldn't work unless the RolesUsers model existed. – ipd May 20 '11 at 20:56
HABTM requires an intermediate model/table otherwise the relation can't exist in a relational database. For the task that @keruilin is attempting to accomplish he needs to either append to his existing RolesUser model or create it. – Pan Thomakos May 23 '11 at 18:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.