forked from wallabag/wallabag
39 lines
939 B
PHP
39 lines
939 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Application\Migrations;
|
||
|
|
|
||
|
|
use Doctrine\DBAL\Schema\Schema;
|
||
|
|
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Added `given_url` field in entry table.
|
||
|
|
*/
|
||
|
|
class Version20170710125843 extends WallabagMigration
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @param Schema $schema
|
||
|
|
*/
|
||
|
|
public function up(Schema $schema)
|
||
|
|
{
|
||
|
|
$entryTable = $schema->getTable($this->getTable('entry'));
|
||
|
|
|
||
|
|
$this->skipIf($entryTable->hasColumn('given_url'), 'It seems that you already played this migration.');
|
||
|
|
|
||
|
|
$entryTable->addColumn('given_url', 'text', [
|
||
|
|
'notnull' => false,
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param Schema $schema
|
||
|
|
*/
|
||
|
|
public function down(Schema $schema)
|
||
|
|
{
|
||
|
|
$entryTable = $schema->getTable($this->getTable('entry'));
|
||
|
|
|
||
|
|
$this->skipIf(!$entryTable->hasColumn('given_url'), 'It seems that you already played this migration.');
|
||
|
|
|
||
|
|
$entryTable->dropColumn('given_url');
|
||
|
|
}
|
||
|
|
}
|