diff --git a/msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php b/msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php index 6d7bf1c1..6fd4a6e7 100644 --- a/msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php +++ b/msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php @@ -11,7 +11,7 @@ use MsgPhp\Eav\Entity\Attribute as BaseAttribute; */ class Attribute extends BaseAttribute { - /** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_attribute_id") */ + /** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_attribute_id", length=191) */ private $id; public function __construct(AttributeIdInterface $id) diff --git a/msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php b/msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php index aefaa897..2534e028 100644 --- a/msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php +++ b/msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php @@ -11,7 +11,7 @@ use MsgPhp\Eav\Entity\AttributeValue as BaseAttributeValue; */ class AttributeValue extends BaseAttributeValue { - /** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_attribute_value_id") */ + /** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_attribute_value_id", length=191) */ private $id; public function __construct(AttributeValueIdInterface $id, Attribute $attribute, $value)