diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index 001b550de..87058985d 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -29,11 +29,7 @@ public function definition() 'email' => $this->faker->unique()->safeEmail(), 'email_verified_at' => now(), 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password - 'two_factor_secret' => null, - 'two_factor_confirmed_at' => null, - 'two_factor_recovery_codes' => null, 'remember_token' => Str::random(10), - 'profile_photo_path' => null, ]; }