Skip to content

Commit

Permalink
fix(agent): service themis b second missing
Browse files Browse the repository at this point in the history
 - second Themis id 37 has wring name
  • Loading branch information
xtiannyeto committed Oct 22, 2024
1 parent df6b836 commit c1e1843
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
DO
$$
BEGIN
UPDATE agent
SET first_name = 'Stéphane',
last_name = 'Hellio'
WHERE id = 37;

DELETE FROM agent_service
WHERE agent_id = 37
AND service_id = 1
AND agent_role_id = 11;
END
$$;

0 comments on commit c1e1843

Please sign in to comment.