changed cleanup data from services: to data:

This commit is contained in:
2021-01-09 19:10:42 +09:00
parent 3a33fa7faa
commit 2e8f2923ef
4 changed files with 16 additions and 5 deletions
+13 -2
View File
@@ -47,6 +47,17 @@ class Kernel extends ConsoleKernel
//Horizon Graph Schedule
$schedule->command('horizon:snapshot')->everyFiveMinutes();
/**
* Moon Update Schedule
*/
/**
* System Rental Schedule
*/
$schedule->command('services:SystemRentals')
->monthlyOn(1, '00:01')
->withoutOverlapping();
/**
* Rentals / Flex Schedule
*/
@@ -76,11 +87,11 @@ class Kernel extends ConsoleKernel
/**
* Purge Data Schedule
*/
$schedule->command('services:CleanData')
$schedule->command('data:CleanData')
->weekly(7, '11:00');
$schedule->command('data:PurgeCorpLedgers')
->monthly();
$schedule->command('services:PurgeUsers')
$schedule->command('data:PurgeUsers')
->dailyAt('23:00');
/**