coolify/database/seeders/ApplicationSeeder.php

38 lines
1.0 KiB
PHP
Raw Normal View History

<?php
namespace Database\Seeders;
use App\Models\Application;
use App\Models\Environment;
2023-03-27 14:31:42 +02:00
use App\Models\StandaloneDocker;
2023-03-27 18:14:33 +02:00
use App\Models\SwarmDocker;
use Illuminate\Database\Seeder;
class ApplicationSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
$environment_1 = Environment::find(1);
2023-03-27 14:31:42 +02:00
$standalone_docker_1 = StandaloneDocker::find(1);
2023-03-27 18:14:33 +02:00
$swarm_docker_1 = SwarmDocker::find(1);
2023-03-27 14:31:42 +02:00
2023-03-27 18:14:33 +02:00
Application::create([
'id' => 1,
'name' => 'My first application',
2023-03-27 18:14:33 +02:00
'environment_id' => $environment_1->id,
2023-03-27 14:31:42 +02:00
'destination_id' => $standalone_docker_1->id,
'destination_type' => StandaloneDocker::class,
]);
2023-03-27 18:14:33 +02:00
Application::create([
'id' => 2,
2023-03-28 08:28:03 +02:00
'name' => 'My second application (Swarm)',
2023-03-27 18:14:33 +02:00
'environment_id' => $environment_1->id,
'destination_id' => $swarm_docker_1->id,
'destination_type' => SwarmDocker::class,
]);
}
}