Skip to content

Commit

Permalink
fix: fix crew for JB A
Browse files Browse the repository at this point in the history
  • Loading branch information
lwih committed Nov 26, 2024
1 parent 27401da commit 65b4012
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
DO
$$
BEGIN
INSERT INTO agent_service (service_id, agent_id, agent_role_id)
VALUES (1, 129, 16);

DELETE
FROM agent_service
WHERE agent_id = 40
AND service_id = 1;

DELETE
FROM agent_service
WHERE agent_id = 122
AND service_id = 1;

END
$$;

0 comments on commit 65b4012

Please sign in to comment.