touch(name = nil)
Instance Public methods
Saves the record with the updated_at/on attributes set to the current time.
Please note that no validation is performed and only the
after_touch, after_commit and
after_rollback callbacks are executed. If an attribute name is
passed, that attribute is updated along with updated_at/on attributes.
product.touch # updates updated_at/on
product.touch(:designed_at) # updates the designed_at attribute and updated_at/on
If used alon