aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Entry.php
diff options
context:
space:
mode:
authorOlivier Mehani <shtrom@ssji.net>2019-08-07 21:44:00 +1000
committerOlivier Mehani <shtrom@ssji.net>2019-08-07 21:44:00 +1000
commit588de419e043bc1d8876552809607721cb256094 (patch)
tree7c2bd8cbfa99ad34cdf95dd2ffe87927958a1e02 /src/Wallabag/CoreBundle/Entity/Entry.php
parentb700b38e1729d50a19ba403004869eb540121ec7 (diff)
downloadwallabag-588de419e043bc1d8876552809607721cb256094.tar.gz
wallabag-588de419e043bc1d8876552809607721cb256094.tar.zst
wallabag-588de419e043bc1d8876552809607721cb256094.zip
Add user_archived index
Signed-off-by: Olivier Mehani <shtrom@ssji.net>
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/Entry.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Entry.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php
index 593ff01d..49f19cfa 100644
--- a/src/Wallabag/CoreBundle/Entity/Entry.php
+++ b/src/Wallabag/CoreBundle/Entity/Entry.php
@@ -30,6 +30,7 @@ use Wallabag\UserBundle\Entity\User;
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 * @ORM\Index(name="user_language", columns={"language", "user_id"}),
33 * @ORM\Index(name="user_archived", columns={"user_id", "is_archived", "archived_at"}),
33 * @ORM\Index(name="user_starred", columns={"user_id", "is_starred", "starred_at"}) 34 * @ORM\Index(name="user_starred", columns={"user_id", "is_starred", "starred_at"})
34 * } 35 * }
35 * ) 36 * )