Update command

pull/821/head
Daniel Supernault 6 years ago
parent afe18e02ed
commit 41007298a2
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -45,7 +45,7 @@ class FixDuplicateProfiles extends Command
*/
public function handle()
{
$profiles = Profile::selectRaw('count(user_id) as count,user_id,id')->whereNotNull('user_id')->groupBy('user_id')->orderBy('user_id', 'desc')->get()->where('count', '>', 1);
$profiles = Profile::selectRaw('count(user_id) as count,user_id')->whereNotNull('user_id')->groupBy('user_id')->orderBy('user_id', 'desc')->get()->where('count', '>', 1);
$count = $profiles->count();
if($count == 0) {
$this->info("No duplicate profiles found!");

Loading…
Cancel
Save