Update seed_data.sql

This commit is contained in:
Abhimanyu Saharan
2026-02-02 22:29:20 +05:30
committed by GitHub
parent 03971e3a7d
commit 69ee11a65d

View File

@@ -18,7 +18,7 @@ ALTER TABLE public.activities DISABLE TRIGGER ALL;
-- Employees (keep only 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) INSERT INTO public.employees (id, name, employee_type, department_id, manager_id, title, status, openclaw_session_key, notify_enabled, team_id)
VALUES 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 ON CONFLICT (id) DO UPDATE SET
name = EXCLUDED.name, name = EXCLUDED.name,
employee_type = EXCLUDED.employee_type, employee_type = EXCLUDED.employee_type,