diff --git a/apps/tools/sql/list_tool.sql b/apps/tools/sql/list_tool.sql index cd5bf04be..59b330432 100644 --- a/apps/tools/sql/list_tool.sql +++ b/apps/tools/sql/list_tool.sql @@ -9,7 +9,8 @@ from (select "id"::text, "user_id", "icon", "create_time", - "update_time" + "update_time", + "is_active" from tool ${tool_scope_query_set} UNION select "id", @@ -22,6 +23,7 @@ from (select "id"::text, "user_id", '' as "icon", "create_time", - "update_time" + "update_time", + 'true' as "is_active" from tool_folder ${folder_query_set}) temp ${tool_query_set} \ No newline at end of file