Skip to content

Commit ea972ba

Browse files
committed
feat(store): add Output field to Execution struct for task output storage
1 parent e601481 commit ea972ba

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

core/store/store.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ type Execution struct {
5454
EndTime *time.Time `json:"end_time,omitempty" gorm:"index"`
5555
Bytes uint64 `json:"bytes,omitempty"`
5656
ExitCode int `json:"exit_code,omitempty"`
57+
Output string `json:"output,omitempty" sql:"default ''"`
5758
Rows uint64 `json:"rows,omitempty"`
5859
Pid int `json:"pid,omitempty"`
5960
Version string `json:"version,omitempty"`

0 commit comments

Comments
 (0)