right now, in my model of an object I have:
#paperclip
has_attached_file :photo, :styles => {
:thumb=> "100x100#",
:small => "150x150>",
:medium => "300x300>",
:large => "400x400>" },
:url => "/images/my_obj/:id/:style/:basename.:extension",
:path => ":rails_root/public/images/my_obj/:id/:style/:basename.:extension",
:default_url => "/images/image.png"
when I delete this item, the image gets automatically deleted as well. however, I'd prefer that it remains in existence. Is there a way?
Thanks : )