bugfix: missing destination name for DiskItem (#1031)

This commit is contained in:
Srikanth Chekuri 2022-05-03 19:13:32 +05:30 committed by GitHub
parent c969b5f329
commit 3e5f9f3b25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -245,8 +245,8 @@ type SetTTLResponseItem struct {
}
type DiskItem struct {
Name string `json:"name,omitempty" db:"name,omitempty"`
Type string `json:"type,omitempty" db:"type,omitempty"`
Name string `json:"name,omitempty" ch:"name"`
Type string `json:"type,omitempty" ch:"type"`
}
type DBResponseTTL struct {