Skip to content

Commit eef511b

Browse files
authored
Fix minimal typo (#244)
1 parent 1b65c98 commit eef511b

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

planetscale/workflows.go

+18-18
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@ import (
1010
)
1111

1212
type Workflow struct {
13-
ID string `json:"id"`
14-
Name string `json:"name"`
15-
Number uint64 `json:"number"`
16-
State string `json:"state"`
17-
CreatedAt time.Time `json:"created_at"`
18-
UpdatedAt time.Time `json:"updated_at"`
19-
StartedAt *time.Time `json:"started_at"`
20-
CompletedAt *time.Time `json:"completed_at"`
21-
CancelledAt *time.Time `json:"cancelled_at"`
22-
ReversedAt *time.Time `json:"reversed_at"`
23-
RetriedAt *time.Time `json:"retried_at"`
24-
DataCopycCompletedAt *time.Time `json:"data_copy_completed_at"`
25-
CutoverAt *time.Time `json:"cutover_at"`
26-
ReplicasSwitched bool `json:"replicas_switched"`
27-
PrimariesSwitched bool `json:"primaries_switched"`
28-
SwitchReplicasAt *time.Time `json:"switch_replicas_at"`
29-
SwitchPrimariesAt *time.Time `json:"switch_primaries_at"`
30-
VerifyDataAt *time.Time `json:"verify_data_at"`
13+
ID string `json:"id"`
14+
Name string `json:"name"`
15+
Number uint64 `json:"number"`
16+
State string `json:"state"`
17+
CreatedAt time.Time `json:"created_at"`
18+
UpdatedAt time.Time `json:"updated_at"`
19+
StartedAt *time.Time `json:"started_at"`
20+
CompletedAt *time.Time `json:"completed_at"`
21+
CancelledAt *time.Time `json:"cancelled_at"`
22+
ReversedAt *time.Time `json:"reversed_at"`
23+
RetriedAt *time.Time `json:"retried_at"`
24+
DataCopyCompletedAt *time.Time `json:"data_copy_completed_at"`
25+
CutoverAt *time.Time `json:"cutover_at"`
26+
ReplicasSwitched bool `json:"replicas_switched"`
27+
PrimariesSwitched bool `json:"primaries_switched"`
28+
SwitchReplicasAt *time.Time `json:"switch_replicas_at"`
29+
SwitchPrimariesAt *time.Time `json:"switch_primaries_at"`
30+
VerifyDataAt *time.Time `json:"verify_data_at"`
3131

3232
Branch DatabaseBranch `json:"branch"`
3333
SourceKeyspace Keyspace `json:"source_keyspace"`

0 commit comments

Comments
 (0)