We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b66c49f commit 62cbc16Copy full SHA for 62cbc16
manager/models/job.go
@@ -25,7 +25,7 @@ type Job struct {
25
Type string `gorm:"column:type;type:varchar(256);comment:type" json:"type"`
26
State string `gorm:"column:state;type:varchar(256);not null;default:'PENDING';comment:service state" json:"state"`
27
Args JSONMap `gorm:"column:args;not null;comment:task request args" json:"args"`
28
- Result JSONMap `gorm:"column:result;comment:task result" json:"result"`
+ Result JSONMap `gorm:"column:task_result;type:longtext;comment:task result" json:"result"`
29
UserID uint `gorm:"column:user_id;comment:user id" json:"user_id"`
30
User User `gorm:"-" json:"user"`
31
SeedPeerClusters []SeedPeerCluster `gorm:"many2many:job_seed_peer_cluster;" json:"seed_peer_clusters"`
0 commit comments