From 7e3dd1bf672601cd904a167084ef3cdcd94d0bd8 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 16 Sep 2020 17:06:06 +1000 Subject: [PATCH] Fixes for create test data --- app/Console/Commands/CreateTestData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/CreateTestData.php b/app/Console/Commands/CreateTestData.php index 19744925f012..f8b7a9ce44fd 100644 --- a/app/Console/Commands/CreateTestData.php +++ b/app/Console/Commands/CreateTestData.php @@ -329,7 +329,7 @@ class CreateTestData extends Command 'company_id' => $company->id, ]); - $this->count = $this->count * 100; + $this->count = $this->count * 10; $this->info('Creating '.$this->count.' clients');