move market data seeder to dedicated command

This commit is contained in:
hackerESQ
2024-09-08 21:17:12 -05:00
parent 92e57e6638
commit 1a8e43f790
4 changed files with 66 additions and 5 deletions
@@ -31,10 +31,6 @@ class CreateMarketDataTable extends Migration
$table->json('meta_data')->nullable();
$table->timestamps();
});
Artisan::call('db:seed', [
'--class' => MarketDataSeeder::class,
]);
}
/**