diff --git a/backend/scripts/seed_data.sql b/backend/scripts/seed_data.sql index 9398dd4e..56d8205d 100644 --- a/backend/scripts/seed_data.sql +++ b/backend/scripts/seed_data.sql @@ -18,7 +18,7 @@ ALTER TABLE public.activities DISABLE TRIGGER ALL; -- 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 - (2, 'Abhimanyu', 'human', NULL, NULL, 'CEO', 'active', NULL, false, NULL) + (1, 'Abhimanyu', 'human', NULL, NULL, 'CEO', 'active', NULL, false, NULL) ON CONFLICT (id) DO UPDATE SET name = EXCLUDED.name, employee_type = EXCLUDED.employee_type,