trypost/database/seeders/DatabaseSeeder.php
Paulo Castellano d3e9be54b6 refactor(seeder): remove conditional UserSeeder call from DatabaseSeeder
Removed the logic that conditionally seeds the UserSeeder based on the self-hosting configuration. This simplifies the DatabaseSeeder and assumes user data will be handled externally.
2026-06-10 13:08:08 -03:00

21 lines
334 B
PHP

<?php
declare(strict_types=1);
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*/
public function run(): void
{
$this->call([
PlanSeeder::class,
PassportSeeder::class
]);
}
}