Files
Orchestra/cmd/api/models/users.go
T
2026-05-08 14:05:53 +00:00

9 lines
217 B
Go

package models
type User struct {
Base
Username string `gorm:"uniqueIndex;not null" json:"username"`
Email string `gorm:"uniqueIndex;not null" json:"email"`
Groups []Group `gorm:"many2many:user_groups"`
}