From bc1af2f1adf634230263a1f928f269c618a61216 Mon Sep 17 00:00:00 2001 From: Hotlander Date: Tue, 16 Jun 2020 14:23:42 +0200 Subject: [PATCH] - fixed issue with misquoting the columns on the unique constraint in the Company entity --- src/Marello/Bundle/CustomerBundle/Entity/Company.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Marello/Bundle/CustomerBundle/Entity/Company.php b/src/Marello/Bundle/CustomerBundle/Entity/Company.php index 7fc4938a3..991b960ff 100644 --- a/src/Marello/Bundle/CustomerBundle/Entity/Company.php +++ b/src/Marello/Bundle/CustomerBundle/Entity/Company.php @@ -20,7 +20,7 @@ * uniqueConstraints={ * @ORM\UniqueConstraint( * name="marello_customer_company_compnrorgidx", - * columns={"company_number,organization_id"} + * columns={"company_number","organization_id"} * ) * } *