mirror of https://github.com/go-gorm/gorm.git
11 lines
152 B
Go
11 lines
152 B
Go
|
package gorm
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Model struct {
|
||
|
ID uint `gorm:"primary_key"`
|
||
|
CreatedAt time.Time
|
||
|
UpdatedAt time.Time
|
||
|
DeletedAt *time.Time
|
||
|
}
|