Is it true that HABTM relationship does not support :dependent option.
class Person < ActiveRecord::Base
has_and_belongs_to_many :posts, :dependent => :destroy
end
I am trying rails edge.
|
Is it true that HABTM relationship does not support :dependent option.
I am trying rails edge. |
||||
|
|
|
Yep, It doesn't support it. See the docs. Generally |
||||
|
|
|
If you want to keep to the simple
Which will clear the join table of all entries of that But guessing from your names ( |
|||||
|