27 lines
583 B
PHP
27 lines
583 B
PHP
|
<?php
|
||
|
|
||
|
namespace Database\Seeders;
|
||
|
|
||
|
use App\Models\Server;
|
||
|
use App\Models\Team;
|
||
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||
|
use Illuminate\Database\Seeder;
|
||
|
|
||
|
class ServerSeeder extends Seeder
|
||
|
{
|
||
|
/**
|
||
|
* Run the database seeds.
|
||
|
*/
|
||
|
public function run(): void
|
||
|
{
|
||
|
$root_team = Team::find(1);
|
||
|
Server::create([
|
||
|
'id' => 1,
|
||
|
'name' => "testing-host",
|
||
|
'description' => "This is a test docker container",
|
||
|
'ip' => "coolify-testing-host",
|
||
|
'team_id' => $root_team->id,
|
||
|
]);
|
||
|
}
|
||
|
}
|