refactor: adjustments to variable namings

This commit is contained in:
2025-09-11 14:26:40 +03:00
parent f81e4eaa47
commit 4b40a05e2d
4 changed files with 42 additions and 8 deletions

View File

@@ -402,7 +402,7 @@ VALUES (
$3::text,
$4::text,
$5::text,
$6::boolean
$6::text
)
RETURNING id, guid, profile_id, hidden, name, icon_name, color, color_grad, deleted
`
@@ -413,7 +413,7 @@ type CreateWishListParams struct {
Name string
IconName string
Color string
ColorGrad bool
ColorGrad string
}
func (q *Queries) CreateWishList(ctx context.Context, arg CreateWishListParams) (WishList, error) {