Skip to content

Commit 35a9558

Browse files
authored
Merge pull request #442 from MTES-MCT/fix/jb_a
fix: fix crew for JB A
2 parents 27401da + 65b4012 commit 35a9558

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
DO
2+
$$
3+
BEGIN
4+
INSERT INTO agent_service (service_id, agent_id, agent_role_id)
5+
VALUES (1, 129, 16);
6+
7+
DELETE
8+
FROM agent_service
9+
WHERE agent_id = 40
10+
AND service_id = 1;
11+
12+
DELETE
13+
FROM agent_service
14+
WHERE agent_id = 122
15+
AND service_id = 1;
16+
17+
END
18+
$$;

0 commit comments

Comments
 (0)