| 123456789101112 |
- package model
- import "time"
- type ManagedSeed struct {
- ID uint `gorm:"primaryKey;autoIncrement" json:"id"`
- ChannelName string `gorm:"uniqueIndex;size:255;not null" json:"channel_name"`
- Status string `gorm:"type:enum('active','inactive');default:'active'" json:"status"`
- Note string `gorm:"size:500" json:"note"`
- CreatedAt time.Time `json:"created_at"`
- UpdatedAt time.Time `json:"updated_at"`
- }
|