Skip to content

Commit 35b30c2

Browse files
committed
fix: add template_id to tool and tool_folder queries in list_tool.sql
1 parent c9bdb9c commit 35b30c2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/tools/sql/list_tool.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ from (select tool."id"::text,
1010
tool."user_id",
1111
"user".nick_name as "nick_name",
1212
tool."icon",
13+
tool."template_id"::text,
1314
tool."create_time",
1415
tool."update_time",
1516
tool."is_active"
@@ -27,6 +28,7 @@ from (select tool."id"::text,
2728
tool_folder."user_id",
2829
"user".nick_name as "nick_name",
2930
'' as "icon",
31+
'' as "template_id",
3032
tool_folder."create_time",
3133
tool_folder."update_time",
3234
'true' as "is_active"

0 commit comments

Comments
 (0)