diff --git a/app/database/seeds/IncidentTableSeeder.php b/app/database/seeds/IncidentTableSeeder.php index 49ea0ca6..9fd138e2 100644 --- a/app/database/seeds/IncidentTableSeeder.php +++ b/app/database/seeds/IncidentTableSeeder.php @@ -16,28 +16,28 @@ class IncidentTableSeeder extends Seeder [ "name" => "Test Incident", "message" => "Something went wrong, oh noes.", - "component_id" => 1, + "component_id" => 0, "user_id" => 1, ], [ "name" => "Update", "message" => "We've found the problem, so we're looking at it.", "status" => 2, - "component_id" => 1, + "component_id" => 0, "user_id" => 1, ], [ "name" => "Monitoring the fix", "message" => "We're checking that our fix will first work.", "status" => 3, - "component_id" => 1, + "component_id" => 0, "user_id" => 1, ], [ "name" => "Awesome", "message" => "We totally nailed the fix.", "status" => 4, - "component_id" => 2, + "component_id" => 0, "user_id" => 1, ], ];