Seed Components with user_id for what will be the default user

This commit is contained in:
James Brooks
2014-11-26 11:09:41 +00:00
parent 97ec6eceb9
commit 68c90abc30

View File

@@ -14,12 +14,18 @@ class ComponentTableSeeder extends Seeder {
$defaultComponents = [
[
"name" => "API",
"description" => "Used by third-parties to connect to us"
"description" => "Used by third-parties to connect to us",
"status" => 1,
"user_id" => 1
], [
"name" => "Payments",
"description" => "Backed by Stripe"
"description" => "Backed by Stripe",
"status" => 1,
"user_id" => 1
], [
"name" => "Website"
"name" => "Website",
"status" => 1,
"user_id" => 1
]
];