]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Add index on starred entries
authorOlivier Mehani <shtrom@ssji.net>
Tue, 6 Aug 2019 12:39:12 +0000 (22:39 +1000)
committerOlivier Mehani <shtrom@ssji.net>
Tue, 6 Aug 2019 13:21:47 +0000 (23:21 +1000)
Fixes #4079

Signed-off-by: Olivier Mehani <shtrom@ssji.net>
app/DoctrineMigrations/Version20190806131006.php [new file with mode: 0644]
src/Wallabag/CoreBundle/Entity/Entry.php

diff --git a/app/DoctrineMigrations/Version20190806131006.php b/app/DoctrineMigrations/Version20190806131006.php
new file mode 100644 (file)
index 0000000..7ad45b5
--- /dev/null
@@ -0,0 +1,22 @@
+<?php declare(strict_types=1);
+
+namespace Application\Migrations;
+
+use Doctrine\DBAL\Schema\Schema;
+use Doctrine\Migrations\AbstractMigration;
+
+/**
+ * Auto-generated Migration: Please modify to your needs!
+ */
+final class Version20190806131006 extends AbstractMigration
+{
+    public function up(Schema $schema) : void
+    {
+        $this->addSql('CREATE INDEX user_starred ON wallabag_entry (user_id, is_starred, starred_at)');
+    }
+
+    public function down(Schema $schema) : void
+    {
+        $this->addSql('DROP INDEX user_starred ON `wallabag_entry`');
+    }
+}
index eb185b8c80f993e63ba2cc55b7410b9525326ba1..593ff01df8b22a606e9ee718e1176c769d0a76be 100644 (file)
@@ -29,7 +29,8 @@ use Wallabag\UserBundle\Entity\User;
  *         @ORM\Index(name="uid", columns={"uid"}),
  *         @ORM\Index(name="hashed_url_user_id", columns={"user_id", "hashed_url"}, options={"lengths"={null, 40}}),
  *         @ORM\Index(name="hashed_given_url_user_id", columns={"user_id", "hashed_given_url"}, options={"lengths"={null, 40}}),
- *         @ORM\Index(name="user_language", columns={"language", "user_id"})
+ *         @ORM\Index(name="user_language", columns={"language", "user_id"}),
+ *         @ORM\Index(name="user_starred", columns={"user_id", "is_starred", "starred_at"})
  *     }
  * )
  * @ORM\HasLifecycleCallbacks()