Skip to content

Commit

Permalink
fix: add text limit length to review content (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
ADchasacademy authored Feb 7, 2025
2 parents 96772b2 + b67269a commit 7ddd216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/factories/ReviewFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function definition(): array
'user_id' => User::factory(),
'movie_id' => Movie::factory(),
'rating' => $this->faker->numberBetween(1, 10),
'content' => $this->faker->paragraph,
'content' => $this->faker->paragraph(rand(50, 800)),
];
}
}

0 comments on commit 7ddd216

Please sign in to comment.