From e0a2102778a66339f3254757c8192c2c5faeaff1 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Mon, 2 Feb 2026 22:19:03 +0530 Subject: [PATCH] chore(seed): remove seeded agent; keep only human --- backend/scripts/seed_data.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/scripts/seed_data.sql b/backend/scripts/seed_data.sql index dffdbf2..9398dd4 100644 --- a/backend/scripts/seed_data.sql +++ b/backend/scripts/seed_data.sql @@ -15,10 +15,9 @@ ALTER TABLE public.task_comments DISABLE TRIGGER ALL; ALTER TABLE public.project_members DISABLE TRIGGER ALL; ALTER TABLE public.activities DISABLE TRIGGER ALL; --- Employees (keep only Jarvis + Abhimanyu) +-- Employees (keep only Abhimanyu) INSERT INTO public.employees (id, name, employee_type, department_id, manager_id, title, status, openclaw_session_key, notify_enabled, team_id) VALUES - (1, 'Jarvis', 'agent', NULL, NULL, 'CTO', 'active', NULL, true, NULL), (2, 'Abhimanyu', 'human', NULL, NULL, 'CEO', 'active', NULL, false, NULL) ON CONFLICT (id) DO UPDATE SET name = EXCLUDED.name,