Documentation ¶
Index ¶
Constants ¶
View Source
const JobLogTable = "job_log"
JobLogTable is the name of the table that record the job execution result.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type JobLog ¶
type JobLog struct { LogID int `orm:"pk;auto;column(log_id)" json:"log_id"` UUID string `orm:"column(job_uuid)" json:"uuid"` CreationTime time.Time `orm:"column(creation_time);auto_now_add" json:"creation_time"` Content string `orm:"column(content)" json:"content"` }
JobLog holds information about logs which are used to record the result of execution of a job.
Click to show internal directories.
Click to hide internal directories.