Skipping :touch associations when saving an ActiveRecord object
问题 Is there a way to skip updating associations with a :touch association when saving? Setup: class School < ActiveRecord::Base has_many :students end class Student < ActiveRecord::Base belongs_to :school, touch: true end I would like to be able to do something like the following where the touch is skipped. @school = School.create @student = Student.create(school_id: @school.id) @student.name = "Trevor" @student.save # Can I do this without touching the @school record? Can you do this? Something