i have an object person which has a "has_many" relationship with photo object
has_many :photos, :foreign_key => 'person_id', :dependent => :destroy
and on photo:
belongs_to :person, :foreign_key => 'person_id'
what i want to do. is during an update of person, if a user uploaded a new photo to that person with the same "kind" (which is an attribute of photo) so the old kind be deleted from the db
for example: an update is being performed on person with an uploaded photo with kind "face" if a record of photo already exists with the same 'person_id' and the same "kind" it will first be deleted (not updated) and only the then the new record be saved
thanks