1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-27 17:28:39 +00:00

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
commit c19845a7ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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")
*/