gorm/model.go
2015-09-18 10:28:09 +08:00

11 lines
166 B
Go

package gorm
import "time"
type Model struct {
ID uint `gorm:"primary_key"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt *time.Time `sql:"index"`
}