From 9282900591555e6b1a8ae5003a3bc0d6dbfa1723 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 20 Oct 2018 21:50:22 -0600 Subject: [PATCH] Update Console Kernel --- app/Console/Kernel.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 37dfa92db..18057725e 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -27,6 +27,8 @@ class Kernel extends ConsoleKernel { $schedule->command('media:optimize') ->hourly(); + $schedule->command('media:gc') + ->hourly(); $schedule->command('horizon:snapshot')->everyFiveMinutes(); }