mirror of
https://github.com/wahyd4/badger.git
synced 2026-08-10 05:46:01 +10:00
10 lines
217 B
Go
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;"`
|
|
}
|