package database import "time" type ContentLog struct { ID string `gorm:"primaryKey;not null" json:"id"` ContentID string `gorm:"not null" json:"content_id"` UserID string `gorm:"default:null" json:"user_id"` IP string `gorm:"default:null" json:"ip"` UserAgent string `gorm:"default:null" json:"user_agent"` Category string `gorm:"not null" json:"category"` CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"` UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"` }