aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-03-03 19:34:29 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2017-03-03 19:34:29 +0100
commit5e5e6a6053957093bf8422c4efc00d6d6af1d1bb (patch)
treeeb49345288f21eabc315e3a2fda65747efee282c
parente1cc8fd79921fdff9999087ba896c88b14ffc0cd (diff)
downloadwallabag-add-index-entry-url.tar.gz
wallabag-add-index-entry-url.tar.zst
wallabag-add-index-entry-url.zip
Added migration to create index on (user_id, url) on Entry tableadd-index-entry-url
-rw-r--r--app/DoctrineMigrations/Version20170303183149.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20170303183149.php b/app/DoctrineMigrations/Version20170303183149.php
new file mode 100644
index 00000000..99737240
--- /dev/null
+++ b/app/DoctrineMigrations/Version20170303183149.php
@@ -0,0 +1,48 @@
1<?php
2
3namespace Application\Migrations;
4
5use Doctrine\DBAL\Migrations\AbstractMigration;
6use Doctrine\DBAL\Schema\Schema;
7use Symfony\Component\DependencyInjection\ContainerAwareInterface;
8use Symfony\Component\DependencyInjection\ContainerInterface;
9
10/**
11 * Added indexes on wallabag_entry.url and wallabag_entry.user_id
12 */
13class Version20170303183149 extends AbstractMigration implements ContainerAwareInterface
14{
15 /**
16 * @var ContainerInterface
17 */
18 private $container;
19
20 private $indexName = 'idx_entry_user_url';
21
22 public function setContainer(ContainerInterface $container = null)
23 {
24 $this->container = $container;
25 }
26
27 /**
28 * @param Schema $schema
29 */
30 public function up(Schema $schema)
31 {
32 $entryTable = $schema->getTable($this->getTable('entry'));
33 $this->skipIf($entryTable->hasIndex($this->indexName), 'It seems that you already played this migration.');
34
35 $entryTable->addIndex(['user_id', 'url'], $this->indexName);
36 }
37
38 /**
39 * @param Schema $schema
40 */
41 public function down(Schema $schema)
42 {
43 $entryTable = $schema->getTable($this->getTable('entry'));
44 $this->skipIf(false === $entryTable->hasIndex($this->indexName), 'It seems that you already played this migration.');
45
46 $entryTable->dropIndex($this->indexName);
47 }
48}