Gorm

From UVOO Tech Wiki
Revision as of 20:27, 13 March 2022 by Busk (talk | contribs) (Created page with "https://gorm.io/docs/models.html ``` gorm.Model GORM defined a gorm.Model struct, which includes fields ID, CreatedAt, UpdatedAt, DeletedAt // gorm.Model definition type Mode...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

https://gorm.io/docs/models.html

gorm.Model
GORM defined a gorm.Model struct, which includes fields ID, CreatedAt, UpdatedAt, DeletedAt

// gorm.Model definition
type Model struct {
  ID        uint           `gorm:"primaryKey"`
  CreatedAt time.Time
  UpdatedAt time.Time
  DeletedAt gorm.DeletedAt `gorm:"index"`
}