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 created_at index on entry table.
13 class Version20161104073720
extends AbstractMigration
implements ContainerAwareInterface
16 * @var ContainerInterface
20 private $indexName = 'IDX_entry_created_at';
22 public function setContainer(ContainerInterface
$container = null)
24 $this->container
= $container;
28 * @param Schema $schema
30 public function up(Schema
$schema)
32 $entryTable = $schema->getTable($this->getTable('entry'));
33 $this->skipIf($entryTable->hasIndex($this->indexName
), 'It seems that you already played this migration.');
35 $entryTable->addIndex(['created_at'], $this->indexName
);
39 * @param Schema $schema
41 public function down(Schema
$schema)
43 $entryTable = $schema->getTable($this->getTable('entry'));
44 $this->skipIf(false === $entryTable->hasIndex($this->indexName
), 'It seems that you already played this migration.');
46 $entryTable->dropIndex($this->indexName
);
49 private function getTable($tableName)
51 return $this->container
->getParameter('database_table_prefix') . $tableName;