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