Skip to content

Commit

Permalink
Use UUID for user_sign (UrlFactory)
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Apr 30, 2024
1 parent 2b7f631 commit 7ff8f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/factories/UrlFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function definition(): array
'title' => 'No Title',
'keyword' => app(KeyGeneratorService::class)->generateRandomString(),
'is_custom' => false,
'user_sign' => fake()->word(),
'user_sign' => fake()->uuid(),
];
}
}

0 comments on commit 7ff8f2e

Please sign in to comment.