mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +00:00
fix: migration error
This commit is contained in:
parent
47c4ba9dd6
commit
111ef97d9c
@ -258,15 +258,14 @@ func init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type dWorkflowNode struct {
|
type dWorkflowNode struct {
|
||||||
Id string `json:"id"`
|
Id string `json:"id"`
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Config map[string]any `json:"config"`
|
Inputs []map[string]any `json:"inputs"`
|
||||||
Inputs map[string]any `json:"inputs"`
|
Outputs []map[string]any `json:"outputs"`
|
||||||
Outputs map[string]any `json:"outputs"`
|
Next *dWorkflowNode `json:"next,omitempty"`
|
||||||
Next *dWorkflowNode `json:"next,omitempty"`
|
Branches []dWorkflowNode `json:"branches,omitempty"`
|
||||||
Branches []dWorkflowNode `json:"branches,omitempty"`
|
Validated bool `json:"validated"`
|
||||||
Validated bool `json:"validated"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, workflowRun := range workflowRuns {
|
for _, workflowRun := range workflowRuns {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user