After deletion of the user, the user is recreated from the console. However, the email address is missing.
User.create(name: "dave", password: "secret", password_confirmation: "secret")
It should be:
User.create(
name: "dave",
password: "secret",
password_confirmation: "secret",
email_address: "dave@example.org"
)