Run check data script daily
This commit is contained in:
parent
9075cf989a
commit
07244bd83b
|
|
@ -11,6 +11,7 @@
|
|||
|
||||
namespace App\Console;
|
||||
|
||||
use App\Console\Commands\CheckData;
|
||||
use App\Jobs\Cron\RecurringInvoicesCron;
|
||||
use App\Jobs\Ninja\AdjustEmailQuota;
|
||||
use App\Jobs\Ninja\CheckDbStatus;
|
||||
|
|
@ -46,6 +47,8 @@ class Kernel extends ConsoleKernel
|
|||
//$schedule->job(new RecurringInvoicesCron)->hourly();
|
||||
$schedule->job(new VersionCheck)->daily();
|
||||
|
||||
$schedule->command('ninja:check-data')->daily();
|
||||
|
||||
$schedule->job(new ReminderJob)->daily();
|
||||
|
||||
$schedule->job(new CompanySizeCheck)->daily();
|
||||
|
|
|
|||
Loading…
Reference in New Issue