package models import ( "time" "gorm.io/gorm" ) type User struct { ID uint `gorm:"primaryKey"` CreatedAt time.Time UpdatedAt time.Time DeletedAt gorm.DeletedAt `gorm:"index"` Name string `gorm:"column:name"` Email string `gorm:"column:email"` }