package models import ( "gorm.io/gorm" "time" ) var DB *gorm.DB type User struct { gorm.Model Username string Email string PasswordHash []byte `gorm:"size:60"` LastLoginAt time.Time } type EmailConfirmation struct { gorm.Model UserID uint User User ConfirmationCode string ExpiresAt time.Time }