mirror of
https://github.com/wahyd4/badger.git
synced 2026-08-09 05:15:58 +10:00
10 lines
214 B
Go
10 lines
214 B
Go
package models
|
|
|
|
import "github.com/jinzhu/gorm"
|
|
|
|
type BadgeAPIValue struct {
|
|
gorm.Model
|
|
BadgeULID string `gorm:"column:ulid;type:varchar;not null" json:"ulid"`
|
|
Value string `gorm:"not null;" json:"value"`
|
|
}
|