Files

12 lines
163 B
Go

package model
import "gorm.io/gorm"
type User struct {
gorm.Model
Name string
Email string `gorm:"unique"`
Password string
Phone *string // Nullable
}