diff --git a/backend/src/main/resources/db/migration/V1.2024.11.26.11.25__fix_crew_jb_a.sql b/backend/src/main/resources/db/migration/V1.2024.11.26.11.25__fix_crew_jb_a.sql new file mode 100644 index 00000000..ce3a5ff3 --- /dev/null +++ b/backend/src/main/resources/db/migration/V1.2024.11.26.11.25__fix_crew_jb_a.sql @@ -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 +$$;