]>
Commit | Line | Data |
---|---|---|
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 | * Add http_status in `entry_table`. | |
12 | */ | |
13 | class Version20161118134328 extends AbstractMigration implements ContainerAwareInterface | |
14 | { | |
15 | /** | |
16 | * @var ContainerInterface | |
17 | */ | |
18 | private $container; | |
19 | ||
20 | public function setContainer(ContainerInterface $container = null) | |
21 | { | |
22 | $this->container = $container; | |
23 | } | |
24 | ||
25 | /** | |
26 | * @param Schema $schema | |
27 | */ | |
28 | public function up(Schema $schema) | |
29 | { | |
30 | $entryTable = $schema->getTable($this->getTable('entry')); | |
31 | ||
32 | $this->skipIf($entryTable->hasColumn('http_status'), 'It seems that you already played this migration.'); | |
33 | ||
34 | $entryTable->addColumn('http_status', 'string', [ | |
35 | 'length' => 3, | |
36 | 'notnull' => false, | |
37 | ]); | |
38 | } | |
39 | ||
40 | /** | |
41 | * @param Schema $schema | |
42 | */ | |
43 | public function down(Schema $schema) | |
44 | { | |
45 | $entryTable = $schema->getTable($this->getTable('entry')); | |
46 | ||
47 | $this->skipIf(!$entryTable->hasColumn('http_status'), 'It seems that you already played this migration.'); | |
48 | ||
49 | $entryTable->dropColumn('http_status'); | |
50 | } | |
51 | ||
52 | private function getTable($tableName) | |
53 | { | |
54 | return $this->container->getParameter('database_table_prefix') . $tableName; | |
55 | } | |
56 | } |