From f84d6d436fc9f5a5d9466da46746836a623dd20e Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 7 Jan 2021 17:27:44 +1100 Subject: [PATCH] remove custom fields from factories to prevent type clashes" git push " --- database/factories/InvoiceFactory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/factories/InvoiceFactory.php b/database/factories/InvoiceFactory.php index 0652188117c2..13f5ed689a6f 100644 --- a/database/factories/InvoiceFactory.php +++ b/database/factories/InvoiceFactory.php @@ -41,8 +41,8 @@ class InvoiceFactory extends Factory 'tax_rate2' => 17.5, //'tax_name3' => 'THIRDTAX', //'tax_rate3' => 5, - 'custom_value1' => $this->faker->date, - 'custom_value2' => rand(0, 1) ? 'yes' : 'no', + // 'custom_value1' => $this->faker->date, + //'custom_value2' => rand(0, 1) ? 'yes' : 'no', // 'custom_value3' => $this->faker->numberBetween(1,4), // 'custom_value4' => $this->faker->numberBetween(1,4), 'is_deleted' => false,