class Auth::User
- Auth::User
- MartenAuth::User
- MartenAuth::BaseUser
- Marten::DB::Model
- Reference
- Object
Defined in:
auth/models/user.crConstant Summary
-
FIELDS_ =
{"id" => {type: "big_int", kwargs: {primary_key: true, auto: true}}, "email" => {type: "email", kwargs: {}}, "password" => {type: "string", kwargs: {max_size: 128}}, "created_at" => {type: "date_time", kwargs: {auto_now_add: true}}, "updated_at" => {type: "date_time", kwargs: {auto_now: true}}} of Nil => Nil
Instance Method Summary
- #created_at : Time | Nil | Nil
- #created_at!
- #created_at=(created_at : Time | Nil | Nil)
- #created_at?
- #email : String | Nil | Nil
- #email!
- #email=(email : String | Nil | Nil)
- #email?
- #id : Int32 | Int64 | Nil | Nil
- #id!
- #id=(id : Int32 | Int64 | Nil | Nil)
- #id?
- #password : String | Nil | Nil
- #password!
- #password=(password : String | Nil | Nil)
- #password?
- #updated_at : Time | Nil | Nil
- #updated_at!
- #updated_at=(updated_at : Time | Nil | Nil)
- #updated_at?