changed cleanup data from services: to data:
This commit is contained in:
@@ -31,7 +31,7 @@ class CleanStaleDataCommand extends Command
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'services:CleanData';
|
||||
protected $signature = 'data:CleanData';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
||||
@@ -20,7 +20,7 @@ class EmptyJumpBridges extends Command
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'services:EmptyJumpBridges';
|
||||
protected $signature = 'data:EmptyJumpBridges';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
||||
@@ -35,7 +35,7 @@ class PurgeUsers extends Command
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'services:PurgeUsers';
|
||||
protected $signature = 'data:PurgeUsers';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
||||
@@ -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');
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user