Skip to content

Instantly share code, notes, and snippets.

@Cibernomadas
Created June 29, 2018 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cibernomadas/552ad691754b85ccf5fba4df626e87fd to your computer and use it in GitHub Desktop.
Save Cibernomadas/552ad691754b85ccf5fba4df626e87fd to your computer and use it in GitHub Desktop.
type User struct {
gorm.Model
UserSession
Username string `gorm:"type:varchar(32);UNIQUE"`
Email string `gorm:"type:varchar(256);UNIQUE"`
Password string `gorm:"type:varchar(128)"`
AboutMe string `gorm:"type:varchar(512)"`
LastSeen string `gorm:"type:varchar(20)"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment