]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20161118134328.php
Merge pull request #1 from wallabag/master
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161118134328.php
1 <?php
2
3 namespace Application\Migrations;
4
5 use Doctrine\DBAL\Schema\Schema;
6 use Wallabag\CoreBundle\Doctrine\WallabagMigration;
7
8 /**
9 * Add http_status in `entry_table`.
10 */
11 class Version20161118134328 extends WallabagMigration
12 {
13 public function up(Schema $schema)
14 {
15 $entryTable = $schema->getTable($this->getTable('entry'));
16
17 $this->skipIf($entryTable->hasColumn('http_status'), 'It seems that you already played this migration.');
18
19 $entryTable->addColumn('http_status', 'string', [
20 'length' => 3,
21 'notnull' => false,
22 ]);
23 }
24
25 public function down(Schema $schema)
26 {
27 $entryTable = $schema->getTable($this->getTable('entry'));
28
29 $this->skipIf(!$entryTable->hasColumn('http_status'), 'It seems that you already played this migration.');
30
31 $entryTable->dropColumn('http_status');
32 }
33 }