Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type User ¶
type User struct { Id uint `gorm:"column:id;AUTO_INCREMENT;primary_key"` // id Name string `gorm:"column:name;NOT NULL"` // name AvatarUrl string `gorm:"column:avatar_url"` // avatar url Email string `gorm:"column:email;unique;NOT NULL"` // user email Password string `gorm:"column:password;NOT NULL"` // user login password CreatedAt time.Time `gorm:"column:created_at;default:CURRENT_TIMESTAMP"` // create time UpdatedAt time.Time `gorm:"column:updated_at;default:CURRENT_TIMESTAMP"` // update time }
Click to show internal directories.
Click to hide internal directories.