2018-08-01 21:58:48 +03:00
|
|
|
<?php
|
2019-10-05 18:26:10 +03:00
|
|
|
|
2018-08-01 21:58:48 +03:00
|
|
|
declare(strict_types=1);
|
2018-08-01 21:40:24 +03:00
|
|
|
|
|
|
|
namespace ShlinkMigrations;
|
|
|
|
|
2022-01-10 14:05:01 +03:00
|
|
|
use Doctrine\DBAL\Platforms\MySQLPlatform;
|
2018-08-01 21:40:24 +03:00
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
|
|
use Doctrine\DBAL\Schema\SchemaException;
|
|
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Auto-generated Migration: Please modify to your needs!
|
|
|
|
*/
|
|
|
|
final class Version20180801183328 extends AbstractMigration
|
|
|
|
{
|
|
|
|
private const NEW_SIZE = 255;
|
|
|
|
private const OLD_SIZE = 10;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws SchemaException
|
|
|
|
*/
|
2018-08-01 21:58:48 +03:00
|
|
|
public function up(Schema $schema): void
|
2018-08-01 21:40:24 +03:00
|
|
|
{
|
|
|
|
$this->setSize($schema, self::NEW_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws SchemaException
|
|
|
|
*/
|
2018-08-01 21:58:48 +03:00
|
|
|
public function down(Schema $schema): void
|
2018-08-01 21:40:24 +03:00
|
|
|
{
|
|
|
|
$this->setSize($schema, self::OLD_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws SchemaException
|
|
|
|
*/
|
|
|
|
private function setSize(Schema $schema, int $size): void
|
|
|
|
{
|
|
|
|
$schema->getTable('short_urls')->getColumn('short_code')->setLength($size);
|
|
|
|
}
|
2021-10-23 17:02:29 +03:00
|
|
|
|
|
|
|
public function isTransactional(): bool
|
|
|
|
{
|
2022-01-10 14:05:01 +03:00
|
|
|
return ! ($this->connection->getDatabasePlatform() instanceof MySQLPlatform);
|
2021-10-23 17:02:29 +03:00
|
|
|
}
|
2018-08-01 21:40:24 +03:00
|
|
|
}
|