You can delete gorm.Model
from your struct and manually include only the ID, CreateAt and UpdateAt properties without DeleteAt, it looks something like this:
type YourModel sruct {
ID uint `gorm:"primaryKey"`
CreatedAt time.Time
UpdatedAt time.Time
Name string
...
}