Hartl tutorial Chapter 10.2.3
When I attempt to submit existing user email to generate the password reset token, it breaks on the 2nd update_attribute
call in the User model:
The reset_sent_at
column is present in the database, and I can write to it no problem from the console:
usr = User.find_by(name: 'locutius’)
usr.update_attribute(:reset_sent_at, Time.zone.now)
usr.reset_sent_at
Sat, 05 Dec 2015 22:27:27 UTC +00:00
but something about the context via the server is causing it to fall over. Any debug clues greatly appreciated.