Destroying An Object After Touching Its Relatives
Friday, November 2nd, 2007Just a little thought I thought I should be sure to share, as it’s something I wasn’t aware of until this morning.
If you load an object in Rails and load any of it’s relatives through acts_as_tree, and then destroy the object, it will take the relatives with it.
@person = Person.find :first
@person.children.each do |child|
[…]