Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions planetscale/postgres_branches.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ type postgresBranchesResponse struct {

// CreatePostgresBranchRequest encapsulates the request to create a Postgres branch.
type CreatePostgresBranchRequest struct {
Organization string `json:"-"`
Database string `json:"-"`
Region string `json:"region,omitempty"`
Name string `json:"name"`
ParentBranch string `json:"parent_branch"`
BackupID string `json:"backup_id,omitempty"`
ClusterName string `json:"cluster_name,omitempty"`
Organization string `json:"-"`
Database string `json:"-"`
Region string `json:"region,omitempty"`
Name string `json:"name"`
ParentBranch string `json:"parent_branch"`
BackupID string `json:"backup_id,omitempty"`
ClusterName string `json:"cluster_name,omitempty"`
MajorVersion string `json:"major_version,omitempty"`
Storage *StorageConfig `json:"storage,omitempty"`
}
Expand Down
1 change: 0 additions & 1 deletion planetscale/webhooks.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,3 @@ func webhookAPIPath(org, db, id string) string {
func webhookTestAPIPath(org, db, id string) string {
return path.Join(webhookAPIPath(org, db, id), "test")
}

1 change: 0 additions & 1 deletion planetscale/webhooks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,4 +285,3 @@ func TestWebhooks_Test(t *testing.T) {

c.Assert(err, qt.IsNil)
}

Loading