diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index 14d3eb5a..5953c608 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -39,7 +39,7 @@ public function definition(): array 'current_team_id' => null, 'language' => 'en', 'timezone' => 'UTC', - 'is_developer' => 0, + 'is_developer' => false, ]; } @@ -66,6 +66,7 @@ public function withPersonalTeam(?callable $callback = null): static Team::factory() ->state(fn (array $attributes, User $user) => [ 'name' => 'Team ' . $user->name, + 'description' => 'Personal Team', 'user_id' => $user->id, 'personal_team' => true, ])