Hello
I am running Rails 2.0.2 and am unable to use :dependent => :delete in my AR associations
has_many :items, :dependent => :delete
I am given this error.
The :dependent option expects either :destroy, :delete_all, or :nullify (:delete)
I have be unable to find the documentation for :delete_all to see if it does what I want. Is it basically the same thing as delete? Was :delete recently added to Rails and is not in the version I am using?
Thank you