diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 89b16553..d3d22e9a 100755 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -36,9 +36,9 @@ class Kernel extends ConsoleKernel $schedule->command('backup:run')->daily()->at('07:00')->before(function () { Log::info('Running backup:run command'); }); - //$schedule->command('order:gmupdate')->everyTenMinutes()->before(function () { - // Log::info('Running order:gmupdate command'); - //}); + $schedule->command('order:gmupdate')->everyTwoHours()->before(function () { + Log::info('Running order:gmupdate command'); + }); $schedule->command('product:gmupdate')->daily()->at('02:00')->before(function () { Log::info('Running product:gmupdate command'); });