Class: User
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- User
- Defined in:
- app/models/user.rb
Overview
The information all Users of the system have, such as name
and email
.
Schema Information
Table name: users
id :integer not null, primary key
email :string default(""), not null
encrypted_password :string default(""), not null
reset_password_token :string
reset_password_sent_at :datetime
remember_created_at :datetime
sign_in_count :integer default("0"), not null
current_sign_in_at :datetime
last_sign_in_at :datetime
current_sign_in_ip :inet
last_sign_in_ip :inet
created_at :datetime
updated_at :datetime
name :string not null
type :string default("Provider"), not null
business_id :integer
provider_privacy_configuration_id :integer
confirmation_token :string
confirmed_at :datetime
confirmation_sent_at :datetime
unconfirmed_email :string
Defined Under Namespace
Classes: RegistrationsController