I know that destroy cascade will work if proper relationships are setup in the models, but I want to know whether there is a way to destroy cascade on-the-fly, without needing to have everything setup? Maybe something like model.destroy :cascade?

Or am I limited to raw SQL in this case?

link|improve this question

79% accept rate
feedback

1 Answer

I haven't heard of way of doing it on the fly, but rather than using raw SQL try this:

AssociatedModel.destroy_all(:model_id => @model.id)
@model.destroy
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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