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

View File

@@ -31,7 +31,7 @@ class CleanStaleDataCommand extends Command
*
* @var string
*/
protected $signature = 'services:CleanData';
protected $signature = 'data:CleanData';
/**
* The console command description.

View File

@@ -20,7 +20,7 @@ class EmptyJumpBridges extends Command
*
* @var string
*/
protected $signature = 'services:EmptyJumpBridges';
protected $signature = 'data:EmptyJumpBridges';
/**
* The console command description.

View File

@@ -35,7 +35,7 @@ class PurgeUsers extends Command
*
* @var string
*/
protected $signature = 'services:PurgeUsers';
protected $signature = 'data:PurgeUsers';
/**
* The console command description.

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');
/**