base.go 243 B

123456789101112131415
  1. package models
  2. import (
  3. "time"
  4. "gorm.io/gorm"
  5. )
  6. type Model struct {
  7. ID string `gorm:"column:id;primaryKey;type:uuid;default:uuid_generate_v4()"`
  8. CreatedAt time.Time
  9. UpdatedAt time.Time
  10. DeletedAt gorm.DeletedAt `gorm:"index"`
  11. }