diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-03-03 19:34:29 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-03-03 19:34:29 +0100 |
commit | 5e5e6a6053957093bf8422c4efc00d6d6af1d1bb (patch) | |
tree | eb49345288f21eabc315e3a2fda65747efee282c | |
parent | e1cc8fd79921fdff9999087ba896c88b14ffc0cd (diff) | |
download | wallabag-5e5e6a6053957093bf8422c4efc00d6d6af1d1bb.tar.gz wallabag-5e5e6a6053957093bf8422c4efc00d6d6af1d1bb.tar.zst wallabag-5e5e6a6053957093bf8422c4efc00d6d6af1d1bb.zip |
Added migration to create index on (user_id, url) on Entry tableadd-index-entry-url
-rw-r--r-- | app/DoctrineMigrations/Version20170303183149.php | 48 |
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 | |||
3 | namespace Application\Migrations; | ||
4 | |||
5 | use Doctrine\DBAL\Migrations\AbstractMigration; | ||
6 | use Doctrine\DBAL\Schema\Schema; | ||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | ||
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | ||
9 | |||
10 | /** | ||
11 | * Added indexes on wallabag_entry.url and wallabag_entry.user_id | ||
12 | */ | ||
13 | class 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 | } | ||