mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-31 07:47:28 +01:00
b7fa51ae7d
- Added index on entry table for given_url field - Fix tests: The previous `bit.ly` url redirected to doc.wallabag but that url doesn't exist in the fixtures. I used our own internal "redirector" to create a redirect to an url which exist in the fixtures. Also, updating current migration to use the new `WallabagMigration`.
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');
|
|
}
|
|
}
|