Seed Components with user_id for what will be the default user
This commit is contained in:
@@ -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
|
||||
]
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user