polymorphic destroy of resource

Yottameter <yottameter@...> writes:

belongs_to :folder_linkable, :polymorphic => true, :dependent=> :destroy

Specifying :dependent=> :destroy on the has_one declaration causes the "parent" to be destroyed with the resource. You must, however, destroy the resource, not the parent, which seems a bit upside-down.

-wcpr-