This commit is contained in:
hackerESQ
2024-09-09 14:49:34 -05:00
parent 6bb0ad4980
commit cf38f18085
4 changed files with 9 additions and 76 deletions
-60
View File
@@ -1,60 +0,0 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;
use Database\Seeders\MarketDataSeeder;
use Illuminate\Support\Facades\Artisan;
class SeedMarketData extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'seed:market-data
{--force : Will seed even if table already has data.}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Seeds baseline market data';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
if (
DB::table('market_data')->count() === 0
|| $this->option('force', false)
) {
Artisan::call('db:seed', [
'--class' => MarketDataSeeder::class,
]);
return;
}
$this->line('Skipped seeding market data... Table already has data!');
}
}
+1 -2
View File
@@ -2,7 +2,6 @@
namespace App\Console\Commands;
use App\Models\Holding;
use Illuminate\Console\Command;
class SyncDailyChange extends Command
@@ -38,6 +37,6 @@ class SyncDailyChange extends Command
*/
public function handle()
{
//
$this->line('test');
}
}