Change the table seeders a little

This commit is contained in:
James Brooks
2015-01-16 10:36:35 +00:00
parent 9efb1f39da
commit c38f08cc22
3 changed files with 24 additions and 7 deletions
+10 -4
View File
@@ -21,15 +21,21 @@ class ComponentTableSeeder extends Seeder
"description" => "Used by third-parties to connect to us",
"status" => 1,
"user_id" => 1,
"order" => 0,
"group_id" => 0,
], [
"name" => "Payments",
"description" => "Backed by Stripe",
"status" => 1,
"user_id" => 1
"user_id" => 1,
"order" => 0,
"group_id" => 0,
], [
"name" => "Website",
"status" => 1,
"user_id" => 1
"name" => "Website",
"status" => 1,
"user_id" => 1,
"order" => 0,
"group_id" => 0,
],
];