Created
June 22, 2018 10:15
-
-
Save PericlesTheo/6d9c637a64fb1ffed29e12e845277642 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user = User.last | |
user.updated_at | |
#=> Fri, 15 Jun 2018 16:00:02 BST +01:00 | |
user.update(email: "[email protected]") | |
user.updated_at | |
#=> Fri, 22 Jun 2018 11:08:03 BST +01:00 | |
user.reload! | |
user.update_column(:email, "[email protected]") | |
user.updated_at | |
#=> Fri, 22 Jun 2018 11:08:03 BST +01:00 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment