diff options
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/Entry.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php index 4d5e6fc9..eb185b8c 100644 --- a/src/Wallabag/CoreBundle/Entity/Entry.php +++ b/src/Wallabag/CoreBundle/Entity/Entry.php | |||
@@ -28,7 +28,8 @@ use Wallabag\UserBundle\Entity\User; | |||
28 | * @ORM\Index(name="created_at", columns={"created_at"}), | 28 | * @ORM\Index(name="created_at", columns={"created_at"}), |
29 | * @ORM\Index(name="uid", columns={"uid"}), | 29 | * @ORM\Index(name="uid", columns={"uid"}), |
30 | * @ORM\Index(name="hashed_url_user_id", columns={"user_id", "hashed_url"}, options={"lengths"={null, 40}}), | 30 | * @ORM\Index(name="hashed_url_user_id", columns={"user_id", "hashed_url"}, options={"lengths"={null, 40}}), |
31 | * @ORM\Index(name="hashed_given_url_user_id", columns={"user_id", "hashed_given_url"}, options={"lengths"={null, 40}}) | 31 | * @ORM\Index(name="hashed_given_url_user_id", columns={"user_id", "hashed_given_url"}, options={"lengths"={null, 40}}), |
32 | * @ORM\Index(name="user_language", columns={"language", "user_id"}) | ||
32 | * } | 33 | * } |
33 | * ) | 34 | * ) |
34 | * @ORM\HasLifecycleCallbacks() | 35 | * @ORM\HasLifecycleCallbacks() |
@@ -221,7 +222,7 @@ class Entry | |||
221 | /** | 222 | /** |
222 | * @var string | 223 | * @var string |
223 | * | 224 | * |
224 | * @ORM\Column(name="language", type="text", nullable=true) | 225 | * @ORM\Column(name="language", type="string", length=20, nullable=true) |
225 | * | 226 | * |
226 | * @Groups({"entries_for_user", "export_all"}) | 227 | * @Groups({"entries_for_user", "export_all"}) |
227 | */ | 228 | */ |