| 1234567891011 |
- package model
- import "time"
- type ManagedKeyword struct {
- ID uint `gorm:"primaryKey;autoIncrement" json:"id"`
- Keyword string `gorm:"uniqueIndex;size:255;not null" json:"keyword"`
- Category string `gorm:"size:100" json:"category"`
- Status string `gorm:"type:enum('active','inactive');default:'active'" json:"status"`
- CreatedAt time.Time `json:"created_at"`
- }
|