Make created_by equal one in the seeder

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-09-20 13:53:52 +01:00
parent b83d1a043f
commit f53b852dff

View file

@ -35,6 +35,7 @@ class UserFactory extends Factory
'state' => $this->faker->stateAbbr(), 'state' => $this->faker->stateAbbr(),
'username' => $this->faker->unique()->username(), 'username' => $this->faker->unique()->username(),
'zip' => $this->faker->postcode(), 'zip' => $this->faker->postcode(),
'created_by' => 1,
]; ];
} }