Added scheduled_at to the seeder

This commit is contained in:
James Brooks
2015-02-28 21:42:59 +00:00
parent ffaf346287
commit 92c43318a8

View File

@@ -22,6 +22,7 @@ class IncidentTableSeeder extends Seeder
"status" => 4,
"component_id" => 0,
"user_id" => 1,
"scheduled_at" => "0000-00-00 00:00:00",
],
[
"name" => "Monitoring the fix",
@@ -29,6 +30,7 @@ class IncidentTableSeeder extends Seeder
"status" => 3,
"component_id" => 0,
"user_id" => 1,
"scheduled_at" => "0000-00-00 00:00:00",
],
[
"name" => "Update",
@@ -36,12 +38,14 @@ class IncidentTableSeeder extends Seeder
"status" => 2,
"component_id" => 0,
"user_id" => 1,
"scheduled_at" => "0000-00-00 00:00:00",
],
[
"name" => "Test Incident",
"message" => "Something went wrong, oh noes.",
"component_id" => 0,
"user_id" => 1,
"scheduled_at" => "0000-00-00 00:00:00",
],
];