You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ALTERTABLE add_ons ADD COLUMN IF NOT EXISTS is_default BOOLEAN DEFAULT FALSE;
13
+
COMMENT ON COLUMN add_ons.is_default IS 'When TRUE, this app is automatically granted to all newly registered users regardless of their subscription tier.';
14
+
15
+
-- Step 2: Mark Unicorn Chat (Open-WebUI) as a default app
16
+
UPDATE add_ons
17
+
SET is_default = TRUE
18
+
WHERE slug ='open-webui';
19
+
20
+
-- Step 3: Insert Claude Agents into add_ons catalog (if not exists)
21
+
INSERT INTO add_ons (
22
+
name,
23
+
slug,
24
+
description,
25
+
icon_url,
26
+
launch_url,
27
+
category,
28
+
feature_key,
29
+
base_price,
30
+
billing_type,
31
+
is_active,
32
+
is_default,
33
+
is_featured,
34
+
sort_order,
35
+
features
36
+
)
37
+
SELECT
38
+
'Claude Agents',
39
+
'claude-agents',
40
+
'AI agent workflows powered by Claude — build, orchestrate, and execute multi-step agent pipelines',
0 commit comments