Agile Web Development with Rails 8 B7.0: missing email_address (page 220)

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"
)