Merge pull request #3959 from wallabag/mig-tag-collation

mysql: change collation of tag label
This commit is contained in:
Jérémy Benoist
2019-06-06 12:03:37 +02:00
committed by GitHub
3 changed files with 80 additions and 1 deletions

View File

@ -13,7 +13,10 @@ use JMS\Serializer\Annotation\XmlRoot;
* Tag.
*
* @XmlRoot("tag")
* @ORM\Table(name="`tag`")
* @ORM\Table(
* name="`tag`",
* options={"collate"="utf8mb4_bin", "charset"="utf8mb4"},
* )
* @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\TagRepository")
* @ExclusionPolicy("all")
*/