]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20161214094403.php
Update deps
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161214094403.php
1 <?php
2
3 namespace Application\Migrations;
4
5 use Doctrine\DBAL\Schema\Schema;
6 use Wallabag\CoreBundle\Doctrine\WallabagMigration;
7
8 /**
9 * Added index on wallabag_entry.uid.
10 */
11 class Version20161214094403 extends WallabagMigration
12 {
13 private $indexName = 'IDX_entry_uid';
14
15 public function up(Schema $schema)
16 {
17 $entryTable = $schema->getTable($this->getTable('entry'));
18 $this->skipIf($entryTable->hasIndex($this->indexName), 'It seems that you already played this migration.');
19
20 $entryTable->addIndex(['uid'], $this->indexName);
21 }
22
23 public function down(Schema $schema)
24 {
25 $entryTable = $schema->getTable($this->getTable('entry'));
26 $this->skipIf(false === $entryTable->hasIndex($this->indexName), 'It seems that you already played this migration.');
27
28 $entryTable->dropIndex($this->indexName);
29 }
30 }