]> git.localhorst.tv Git - alttp.git/commitdiff
remove references before deleting episode
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Tue, 21 Feb 2023 14:44:52 +0000 (15:44 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Tue, 21 Feb 2023 14:44:52 +0000 (15:44 +0100)
app/Console/Commands/SyncSpeedGaming.php

index 6d0fa1faa777801f213af2f38abfb8c62ec33047..ce8b10c4a7e4faf5fbacd86f58ca9b3d5016c9c2 100644 (file)
@@ -87,6 +87,8 @@ class SyncSpeedGaming extends Command {
                        ->where('start', '<=', $to)
                        ->whereNotIn('ext_id', $ext_ids);
                foreach ($to_purge->get() as $episode) {
+                       $episode->channels()->detach();
+                       $episode->crew()->delete();
                        $episode->players()->delete();
                }
                $to_purge->delete();