This commit is contained in:
2026-03-15 17:26:51 -05:00
parent f7cde8b0c0
commit 02e913328d
+7 -7
View File
@@ -17,12 +17,12 @@ class DatabaseSeeder extends Seeder
public function run(): void
{
//Seeders
$this->call(Database\Seeders\AvailableUserPermissionsSeeder::class);
$this->call(Database\Seeders\AvailableUserRolesSeeder::class);
$this->call(Database\Seeders\ConfigTableSeeder::class);
$this->call(Database\Seeders\SolarSystemSeeder::class);
$this->call(Database\Seeders\SRPTableSeeder::class);
$this->call(Database\Seeders\WikiTableSeeder::class);
$this->call(Database\Seeders\WormholeTypeSeeder::class);
$this->call(AvailableUserPermissionsSeeder::class);
$this->call(AvailableUserRolesSeeder::class);
$this->call(ConfigTableSeeder::class);
$this->call(SolarSystemSeeder::class);
$this->call(SRPTableSeeder::class);
$this->call(WikiTableSeeder::class);
$this->call(WormholeTypeSeeder::class);
}
}