Files
2021-01-25 06:50:48 +11:00

10 lines
217 B
Go

package models
import "gorm.io/gorm"
type BadgeViewCount struct {
gorm.Model
BadgeULID string `gorm:"column:ulid;type:varchar;not null;uniqueIndex" json:"ulid"`
Count int `json:"count" gorm:"not null;"`
}