Files
AFC-Demo/database/seeders/DatabaseSeeder.php
T
cbazza b34612aeaa chore: remove DaxCompanySeeder (legacy demo data)
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.
2025-11-21 10:32:15 +01:00

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
}
}