From efbb1017e7fce0cc0271776ea897db75f90ce03a Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Fri, 1 Jun 2018 12:23:52 +0100 Subject: [PATCH] Also fix orderByRaw in SeedFollows --- app/Console/Commands/SeedFollows.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Console/Commands/SeedFollows.php b/app/Console/Commands/SeedFollows.php index 81f23fabb..d11685648 100644 --- a/app/Console/Commands/SeedFollows.php +++ b/app/Console/Commands/SeedFollows.php @@ -41,10 +41,10 @@ class SeedFollows extends Command { $limit = 10000; - for ($i=0; $i < $limit; $i++) { + for ($i=0; $i < $limit; $i++) { try { - $actor = Profile::orderByRaw('rand()')->firstOrFail(); - $target = Profile::orderByRaw('rand()')->firstOrFail(); + $actor = Profile::inRandomOrder()->firstOrFail(); + $target = Profile::inRandomOrder()->firstOrFail(); $follow = new Follower; $follow->profile_id = $actor->id;