mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 05:38:06 +03:00
37 lines
801 B
PHP
37 lines
801 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 Version20181110175521 extends AbstractMigration
|
||
|
{
|
||
|
/**
|
||
|
* @throws SchemaException
|
||
|
*/
|
||
|
public function up(Schema $schema): void
|
||
|
{
|
||
|
$this->getUserAgentColumn($schema)->setLength(512);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @throws SchemaException
|
||
|
*/
|
||
|
public function down(Schema $schema): void
|
||
|
{
|
||
|
$this->getUserAgentColumn($schema)->setLength(256);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @throws SchemaException
|
||
|
*/
|
||
|
private function getUserAgentColumn(Schema $schema): Column
|
||
|
{
|
||
|
return $schema->getTable('visits')->getColumn('user_agent');
|
||
|
}
|
||
|
}
|