3 namespace Application\Migrations
;
5 use Doctrine\DBAL\Migrations\AbstractMigration
;
6 use Doctrine\DBAL\Schema\Schema
;
7 use Symfony\Component\DependencyInjection\ContainerAwareInterface
;
8 use Symfony\Component\DependencyInjection\ContainerInterface
;
11 * Added index on wallabag_entry.uid
13 class Version20161214094403
extends AbstractMigration
implements ContainerAwareInterface
16 * @var ContainerInterface
20 private $indexName = 'IDX_entry_uid';
22 public function setContainer(ContainerInterface
$container = null)
24 $this->container
= $container;
27 private function getTable($tableName)
29 return $this->container
->getParameter('database_table_prefix').$tableName;
33 * @param Schema $schema
35 public function up(Schema
$schema)
37 $entryTable = $schema->getTable($this->getTable('entry'));
38 $this->skipIf($entryTable->hasIndex($this->indexName
), 'It seems that you already played this migration.');
40 $entryTable->addIndex(['uid'], $this->indexName
);
44 * @param Schema $schema
46 public function down(Schema
$schema)
48 $entryTable = $schema->getTable($this->getTable('entry'));
49 $this->skipIf(false === $entryTable->hasIndex($this->indexName
), 'It seems that you already played this migration.');
51 $entryTable->dropIndex($this->indexName
);