From 0611f6f72348337fe4cef4e99b04e83d32065ec2 Mon Sep 17 00:00:00 2001 From: Pascal Wacker Date: Sat, 27 Oct 2018 17:25:06 +0200 Subject: [PATCH 1/2] updating msgphp user receipt for msgphp pull 214 --- msgphp/user-bundle/0.6/src/Entity/User/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msgphp/user-bundle/0.6/src/Entity/User/User.php b/msgphp/user-bundle/0.6/src/Entity/User/User.php index e86f8421..bf8b4951 100644 --- a/msgphp/user-bundle/0.6/src/Entity/User/User.php +++ b/msgphp/user-bundle/0.6/src/Entity/User/User.php @@ -11,7 +11,7 @@ use MsgPhp\User\UserIdInterface; */ class User extends BaseUser { - /** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_user_id") */ + /** @ORM\Id() @ORM\GeneratedValue() @ORM\Column(type="msgphp_user_id", length=191) */ private $id; public function __construct(UserIdInterface $id) From 3d610f70f753cee65e002f3bbfe4acc3be9221f0 Mon Sep 17 00:00:00 2001 From: Pascal Wacker Date: Sat, 27 Oct 2018 17:36:10 +0200 Subject: [PATCH 2/2] updating msgphp eav receipt for msgphp pull 214 --- msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php | 2 +- msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)