search/model/domain-model.go

10 lines
165 B
Go
Raw Normal View History

2022-10-17 05:59:10 +00:00
package model
import "time"
type Domain struct {
Root string `gorm:"type:varchar(10);primarykey"`
CreatedAt time.Time
2022-10-17 07:06:30 +00:00
UpdatedAt time.Time `gorm:"index"`
2022-10-17 05:59:10 +00:00
}