diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2019-06-06 12:03:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-06 12:03:37 +0200 |
commit | c19845a7ae5fe7c1ff22fd560c48e4af8b9da15a (patch) | |
tree | 22a576e9c4329851d965b78581d7258d3fe400c9 /src/Wallabag | |
parent | 2b04b300f83cd4bb288c1fd00e2b77ec4f557a00 (diff) | |
parent | feb239ea1006685ab3862c988309a1a5a9659559 (diff) | |
download | wallabag-c19845a7ae5fe7c1ff22fd560c48e4af8b9da15a.tar.gz wallabag-c19845a7ae5fe7c1ff22fd560c48e4af8b9da15a.tar.zst wallabag-c19845a7ae5fe7c1ff22fd560c48e4af8b9da15a.zip |
Merge pull request #3959 from wallabag/mig-tag-collation
mysql: change collation of tag label
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/Tag.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Tag.php b/src/Wallabag/CoreBundle/Entity/Tag.php index a6dc8c50..95c47bbd 100644 --- a/src/Wallabag/CoreBundle/Entity/Tag.php +++ b/src/Wallabag/CoreBundle/Entity/Tag.php | |||
@@ -13,7 +13,10 @@ use JMS\Serializer\Annotation\XmlRoot; | |||
13 | * Tag. | 13 | * Tag. |
14 | * | 14 | * |
15 | * @XmlRoot("tag") | 15 | * @XmlRoot("tag") |
16 | * @ORM\Table(name="`tag`") | 16 | * @ORM\Table( |
17 | * name="`tag`", | ||
18 | * options={"collate"="utf8mb4_bin", "charset"="utf8mb4"}, | ||
19 | * ) | ||
17 | * @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\TagRepository") | 20 | * @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\TagRepository") |
18 | * @ExclusionPolicy("all") | 21 | * @ExclusionPolicy("all") |
19 | */ | 22 | */ |