From 2c4476675ca0747848cf2c35490ab520d18bc432 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 5 Jun 2021 16:11:42 +1000 Subject: [PATCH] Improve check data scripts --- app/Console/Commands/CheckData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/CheckData.php b/app/Console/Commands/CheckData.php index 526da75940b0..feb82b15cd3c 100644 --- a/app/Console/Commands/CheckData.php +++ b/app/Console/Commands/CheckData.php @@ -241,7 +241,7 @@ class CheckData extends Command if ($this->option('fix') == 'true') { foreach ($clients as $client) { - $this->logMessage("Fixing missing contacts #{$client->id}"); + $this->logMessage("Fixing missing primary contacts #{$client->id}"); $new_contact = ClientContactFactory::create($client->company_id, $client->user_id); $new_contact->client_id = $client->id;