updating updated_at column on a belongs_to

Just to update and help anyone else. As is mentioned above I simply touched and it simply worked. Rails is beautiful sometimes :-).

class Photo < ActiveRecord::Base   belongs_to :resort, :touch => true end

Thanks all.