feat: add icon field to tool and tool_folder queries

This commit is contained in:
CaptainB 2025-06-18 15:11:53 +08:00
parent 4eb594598c
commit 707094359b

View File

@ -7,6 +7,7 @@ from (select "id"::text,
"workspace_id",
"folder_id",
"user_id",
"icon",
"create_time",
"update_time"
from tool ${tool_scope_query_set}
@ -19,6 +20,7 @@ from (select "id"::text,
"workspace_id",
"parent_id" as "folder_id",
"user_id",
'' as "icon",
"create_time",
"update_time"
from tool_folder ${folder_query_set}) temp