The DaxCompanySeeder created fake DAX-40 companies and transactions for development. We now use real data from the backend via the TransformDataPoolToProduction job, so this seeder is no longer needed.
27 lines
624 B
PHP
27 lines
624 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\User;
|
|
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
// User::factory(10)->create();
|
|
|
|
User::factory()->withoutTwoFactor()->create([
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
]);
|
|
|
|
// Note: Company and Transaction data is now synced from the backend
|
|
// via TransformDataPoolToProduction job, not seeded manually
|
|
}
|
|
}
|