]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/DoctrineMigrations/Version20171105202000.php
Merge pull request #4152 from ldidry/add-env-var-dev.sh
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20171105202000.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 origin_url column.
10 */
11 class Version20171105202000 extends WallabagMigration
12 {
13 public function up(Schema $schema)
14 {
15 $entryTable = $schema->getTable($this->getTable('entry'));
16
17 $this->skipIf($entryTable->hasColumn('origin_url'), 'It seems that you already played this migration.');
18
19 $entryTable->addColumn('origin_url', 'text', [
20 'notnull' => false,
21 ]);
22 }
23
24 public function down(Schema $schema)
25 {
26 $entryTable = $schema->getTable($this->getTable('entry'));
27
28 $this->skipIf(!$entryTable->hasColumn('origin_url'), 'It seems that you already played this migration.');
29
30 $entryTable->dropColumn('origin_url');
31 }
32 }