allow 65535 character in meta fields (#2690)

This commit is contained in:
Kevin Papst
2021-07-27 19:41:12 +02:00
committed by GitHub
parent 5b8510be56
commit 7352c9a394
2 changed files with 60 additions and 4 deletions

View File

@@ -29,7 +29,6 @@ trait MetaTableTypeTrait
* @ORM\Column(name="id", type="integer")
*/
private $id;
/**
* Name of the meta (custom) field
*
@@ -43,7 +42,6 @@ trait MetaTableTypeTrait
* @Assert\Length(min=2, max=50, allowEmptyString=false)
*/
private $name;
/**
* Value of the meta (custom) field
*
@@ -52,10 +50,10 @@ trait MetaTableTypeTrait
* @Serializer\Expose()
* @Serializer\Groups({"Default"})
*
* @ORM\Column(name="value", type="string", length=255, nullable=true)
* @ORM\Column(name="value", type="text", length=65535, nullable=true)
* @Assert\Length(max=65535, allowEmptyString=true)
*/
private $value;
/**
* @var bool
*