Update entity to match database values

[MAILPOET-2453]
This commit is contained in:
Pavel Dohnal
2019-12-18 08:51:56 +01:00
committed by Rostislav Wolný
parent d8558ffec8
commit 712ea07d17

View File

@ -33,7 +33,7 @@ class CustomFieldEntity {
private $type;
/**
* @ORM\Column(type="json_or_serialized")
* @ORM\Column(type="array")
* @var array
*/
private $params;
@ -76,7 +76,7 @@ class CustomFieldEntity {
/**
* @param array $params
*/
public function setParams($params) {
public function setParams(array $params) {
$this->params = $params;
}
}