Will the find from acts_as_paranoid filter down to an :include? For instance class parent acts_as_paranoid has_many: children end and class child acts_as_paranoid belongs_to :parent end Then if you Parent.find(:all, :include => children) you will get all the children if they are deleted or not. I guess the find that filters out the deleted_at is null does not filter down to the includes like this.
on 14.03.2006 11:34
on 14.03.2006 16:36
On 3/14/06, Ian Connor <ian.connor@gmail.com> wrote: > > that filters out the deleted_at is null does not filter down to the includes > like this. > > -- > Regards, > Ian Connor Nope. has_many :children, :conditions => "deleted_at IS NULL" -- Rick Olson http://techno-weenie.net
on 16.03.2006 10:45
thanks - that would certain fix it :)