I expected the following to work:
class Attachment < ActiveRecord::Base
belongs_to :attachable, :polymorphic => true, :touch => true
end
which I expect the associated objects to be "touched" when the Attachment record is saved or destroyed. It didn't work. Any ideas why?