From 8252d3cf1c9e586f4615eff3961d62c3919ba0e1 Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Sun, 4 Feb 2018 12:31:58 +0800 Subject: [PATCH] Add default value to customer notes --- src/Entity/Customer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Entity/Customer.php b/src/Entity/Customer.php index 3be1623a..8fb59dd1 100644 --- a/src/Entity/Customer.php +++ b/src/Entity/Customer.php @@ -98,6 +98,7 @@ class Customer $this->job_orders = new ArrayCollection(); $this->customer_classification = CustomerClassification::REGULAR; + $this->customer_notes = ''; $this->flag_confirmed = false; $this->flag_mobile_app = false;