Files
ReSendit/internal/user/model.go
2026-03-20 12:33:37 +01:00

11 lines
199 B
Go

package user
import "gorm.io/gorm"
type User struct {
gorm.Model
Username string `gorm:"uniqueIndex;not null"`
PasswordHash string `gorm:"not null"`
Role string `gorm:"not null"`
}