Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Make sure sorting users and groups is done in a case insensitive matter
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjeerd committed Jun 16, 2016
1 parent 31f0d53 commit 4712b17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AppBundle/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class User
/**
* @var string
*
* @ORM\Column(type="string", name="Reference", unique=true, options={"collation":"latin1_bin"})
* @ORM\Column(type="string", name="Reference", unique=true, options={"collation":"latin1_general_ci"})
*
* @Expose()
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AppBundle/Entity/UserGroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class UserGroup
/**
* @var string
*
* @ORM\Column(name="Reference", type="string", unique=true, nullable=true, options={"collation":"latin1_bin"})
* @ORM\Column(name="Reference", type="string", unique=true, nullable=true, options={"collation":"latin1_general_ci"})
* @Required()
* @Expose()
*/
Expand Down

0 comments on commit 4712b17

Please sign in to comment.