10000 updating msgphp user receipt for mysql/maria db as well as msgphp pull 214 by pascalwacker · Pull Request #550 · symfony/recipes-contrib · GitHub
[go: up one dir, main page]

Skip to content

updating msgphp user receipt for mysql/maria db as well as msgphp pull 214 #550

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
2 commits merged into from
Oct 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
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)
Expand Down
2 changes: 1 addition & 1 deletion msgphp/eav-bundle/0.2/src/Entity/Eav/AttributeValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
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)
Expand Down
2 changes: 1 addition & 1 deletion msgphp/user-bundle/0.6/src/Entity/User/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
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)
Expand Down
0