gorm/internal/models/user.go
2025-08-21 05:32:26 +07:00

17 lines
273 B
Go

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"`
}