From 89a275a3b5465285f503ac80f4b12108e0ebed5a Mon Sep 17 00:00:00 2001 From: goulustis Date: Wed, 11 Feb 2026 13:52:28 +0800 Subject: [PATCH] add list to table --- scripts/create_prompt_config.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/create_prompt_config.sql b/scripts/create_prompt_config.sql index 78ef5b3..ba30d5a 100644 --- a/scripts/create_prompt_config.sql +++ b/scripts/create_prompt_config.sql @@ -8,7 +8,8 @@ CREATE TABLE IF NOT EXISTS prompt_sets ( description TEXT DEFAULT '', is_active BOOLEAN DEFAULT false, created_at TIMESTAMPTZ DEFAULT now(), - updated_at TIMESTAMPTZ DEFAULT now() + updated_at TIMESTAMPTZ DEFAULT now(), + list Varchar(255) DEFAULT '' -- tool_set list for client_tool_manager ); -- Fast lookup of the active set for a pipeline