reduce field size to 150 chars to prevent index out of length (#1031)

This commit is contained in:
Kevin Papst
2019-08-16 16:57:09 +02:00
committed by GitHub
parent b6d9bb0d2a
commit 388c3ec188
9 changed files with 131 additions and 14 deletions

View File

@@ -59,7 +59,7 @@ class InvoiceTemplate
/**
* @var string
*
* @ORM\Column(name="address", type="text", length=65535, nullable=true)
* @ORM\Column(name="address", type="text", nullable=true)
*/
private $address;
@@ -105,7 +105,7 @@ class InvoiceTemplate
/**
* @var string
*
* @ORM\Column(name="payment_terms", type="text", length=65535, nullable=true)
* @ORM\Column(name="payment_terms", type="text", nullable=true)
*/
private $paymentTerms;