mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkMigrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
use Shlinkio\Shlink\Core\Entity\Visit;
|
|
use Shlinkio\Shlink\Core\Model\Visitor;
|
|
|
|
final class Version20210207100807 extends AbstractMigration
|
|
{
|
|
public function up(Schema $schema): void
|
|
{
|
|
$visits = $schema->getTable('visits');
|
|
$this->skipIf($visits->hasColumn('visited_url'));
|
|
|
|
$shortUrlId = $visits->getColumn('short_url_id');
|
|
$shortUrlId->setNotnull(false);
|
|
|
|
$visits->addColumn('visited_url', Types::STRING, [
|
|
'length' => Visitor::VISITED_URL_MAX_LENGTH,
|
|
'notnull' => false,
|
|
]);
|
|
$visits->addColumn('type', Types::STRING, [
|
|
'length' => 255,
|
|
'default' => Visit::TYPE_VALID_SHORT_URL,
|
|
]);
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$visits = $schema->getTable('visits');
|
|
$this->skipIf(! $visits->hasColumn('visited_url'));
|
|
|
|
$shortUrlId = $visits->getColumn('short_url_id');
|
|
$shortUrlId->setNotnull(true);
|
|
$visits->dropColumn('visited_url');
|
|
$visits->dropColumn('type');
|
|
}
|
|
|
|
public function isTransactional(): bool
|
|
{
|
|
return $this->connection->getDatabasePlatform()->getName() !== 'mysql';
|
|
}
|
|
}
|