Difference between revisions of "Gorm"

From UVOO Tech Wiki
Jump to navigation Jump to search
(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...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 +
https://dev.to/karanpratapsingh/connecting-to-postgresql-using-gorm-24fj
 +
 +
https://gorm.io/docs/data_types.html
 +
 
https://gorm.io/docs/models.html
 
https://gorm.io/docs/models.html
 
```
 
```

Latest revision as of 22:37, 13 March 2022

https://dev.to/karanpratapsingh/connecting-to-postgresql-using-gorm-24fj

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

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