Set permissions to empty object in user factory

This commit is contained in:
Marcus Moore 2023-08-10 16:55:44 -07:00
parent 41479b1ec7
commit 5b86c02366
No known key found for this signature in database

View file

@ -30,7 +30,7 @@ class UserFactory extends Factory
'locale' => 'en',
'notes' => 'Created by DB seeder',
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'permissions' => '{"user":"0"}',
'permissions' => '{}',
'phone' => $this->faker->phoneNumber(),
'state' => $this->faker->stateAbbr(),
'username' => $this->faker->username(),