Fix IncidentTableSeeder by seeding user_id with user#1
This commit is contained in:
@@ -16,24 +16,28 @@ class IncidentTableSeeder extends Seeder {
|
||||
"name" => "Test Incident",
|
||||
"message" => "Something went wrong, oh noes.",
|
||||
"component" => 1,
|
||||
"user_id" => 1,
|
||||
],
|
||||
[
|
||||
"name" => "Update",
|
||||
"message" => "We've found the problem, so we're looking at it.",
|
||||
"status" => 2,
|
||||
"component" => 1,
|
||||
"user_id" => 1,
|
||||
],
|
||||
[
|
||||
"name" => "Monitoring the fix",
|
||||
"message" => "We're checking that our fix will first work.",
|
||||
"status" => 3,
|
||||
"component" => 1,
|
||||
"user_id" => 1,
|
||||
],
|
||||
[
|
||||
"name" => "Awesome",
|
||||
"message" => "We totally nailed the fix.",
|
||||
"status" => 4,
|
||||
"component" => 2,
|
||||
"user_id" => 1,
|
||||
]
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user