12 lines
301 B
Go
12 lines
301 B
Go
package user
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type User struct {
|
|
ID int64 `gorm:"primaryKey"`
|
|
Username string `gorm:"uniqueIndex;not null"`
|
|
Email string `gorm:"uniqueIndex;not null"`
|
|
Password string `gorm:"not null"`
|
|
DeletedAt gorm.DeletedAt `gorm:"index"`
|
|
}
|