package models import ( "database/sql" "gorm.io/gorm" ) type User struct { gorm.Model Name string Email string Password string TotpSercet sql.NullString DisabledAt sql.NullTime IsAdmin bool SkipWelcome bool } type UserRoles struct { gorm.Model UserID uint User User RoleID uint Role Role SectionID uint Section Section }