3 namespace Application\Migrations
;
5 use Doctrine\DBAL\Schema\Schema
;
6 use Wallabag\CoreBundle\Doctrine\WallabagMigration
;
9 * Added indexes on wallabag_entry.is_starred and wallabag_entry.is_archived.
11 class Version20170127093841
extends WallabagMigration
13 private $indexStarredName = 'IDX_entry_starred';
14 private $indexArchivedName = 'IDX_entry_archived';
17 * @param Schema $schema
19 public function up(Schema
$schema)
21 $entryTable = $schema->getTable($this->getTable('entry'));
22 $this->skipIf($entryTable->hasIndex($this->indexStarredName
) && $entryTable->hasIndex($this->indexArchivedName
), 'It seems that you already played this migration.');
24 $entryTable->addIndex(['is_starred'], $this->indexStarredName
);
25 $entryTable->addIndex(['is_archived'], $this->indexArchivedName
);
29 * @param Schema $schema
31 public function down(Schema
$schema)
33 $entryTable = $schema->getTable($this->getTable('entry'));
34 $this->skipIf(false === $entryTable->hasIndex($this->indexStarredName
) && false === $entryTable->hasIndex($this->indexArchivedName
), 'It seems that you already played this migration.');
36 $entryTable->dropIndex($this->indexStarredName
);
37 $entryTable->dropIndex($this->indexArchivedName
);