item updates weren't working for whatever reason

This commit is contained in:
2020-08-12 03:32:06 -05:00
parent 72502ae53f
commit b7bfe880f4
2 changed files with 62 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ class Kernel extends ConsoleKernel
Commands\Data\CleanStaleDataCommand::class,
Commands\Moons\MoonsUpdateCommand::class,
Commands\Data\PurgeCorpMoonLedgers::class,
Commands\Eve\ItemPricesUpdateCommand::class,
/**
* Rental Moon Commands
*/
@@ -84,6 +85,13 @@ class Kernel extends ConsoleKernel
->monthly();
$schedule->command('services:PurgeUsers')
->dailyAt('23:00');
/**
* Item Update Schedule
*/
$schedule->command('services:ItemPriceUpdate')
->hourlyAt('30')
->withoutOverlapping();
}
/**