mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-18 09:02:04 +03:00
38 lines
816 B
PHP
38 lines
816 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ShlinkMigrations;
|
||
|
|
||
|
use Doctrine\DBAL\Schema\Column;
|
||
|
use Doctrine\DBAL\Schema\Schema;
|
||
|
use Doctrine\DBAL\Schema\SchemaException;
|
||
|
use Doctrine\Migrations\AbstractMigration;
|
||
|
|
||
|
final class Version20191020074522 extends AbstractMigration
|
||
|
{
|
||
|
/**
|
||
|
* @throws SchemaException
|
||
|
*/
|
||
|
public function up(Schema $schema): void
|
||
|
{
|
||
|
$this->getOriginalUrlColumn($schema)->setLength(2048);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @throws SchemaException
|
||
|
*/
|
||
|
public function down(Schema $schema): void
|
||
|
{
|
||
|
$this->getOriginalUrlColumn($schema)->setLength(1024);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @throws SchemaException
|
||
|
*/
|
||
|
private function getOriginalUrlColumn(Schema $schema): Column
|
||
|
{
|
||
|
return $schema->getTable('short_urls')->getColumn('original_url');
|
||
|
}
|
||
|
}
|