Check out example codes for "rails update without validation". It will help you in understanding the concepts better.
Code Example 1
# no validations
user.update_attribute(:last_request_at, Time.current)
# no validations AND callback
user.update_columns(last_request_at: Time.current)
Learn ReactJs, React Native from akashmittal.com