package user import ( "gorm.io/gorm" ) type User struct { ID uint `gorm:"primaryKey"` Username string `gorm:"uniqueIndex;not null"` Email string `gorm:"uniqueIndex;not null"` Password string `gorm:"not null"` DeletedAt gorm.DeletedAt `gorm:"index"` }