This commit is contained in:
Andras Bacsai
2023-03-27 20:45:32 +02:00
parent 434ca04e00
commit 79f3b7c4b8
5 changed files with 11 additions and 30 deletions

View File

@@ -20,5 +20,10 @@ class EnvironmentSeeder extends Seeder
'name' => 'production',
'project_id' => $project_1->id,
]);
Environment::create([
'id' => 2,
'name' => 'staging',
'project_id' => $project_1->id,
]);
}
}