Skip to content
Snippets Groups Projects
Commit 688865a6 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

fixes #4292

Closes #4292

Merge request studip/studip!3107
parent b6e85daf
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ return new class extends Migration
JOIN consultation_slots AS s1
ON s1.slot_id = (
SELECT slot_id
FROM consultation_slots AS s2
FROM (SELECT slot_id, block_id, start_time FROM consultation_slots) AS s2
WHERE s2.block_id = s0.block_id
AND s2.start_time < s0.start_time
AND s2.slot_id != s0.slot_id
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment