Rails - Update attributes of a record
There are many ways to update an attributes of a record in Rails.
update_attributes: Full options, with validate, run callback, updateupdated_atfieldupdate_attribute: Without validate for updated field, run callback, updateupdated_atfieldupdate_columns: Update to DB, without validates, not run callback, not updatedupdated_atfieldupdate_column: Likeupdated_columnsbut it updatesupdated_atfield.update_all: Update all record in a table without validations, callbacks,updated_atfield