mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-18 09:02:04 +03:00
49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkMigrations;
|
|
|
|
use Doctrine\DBAL\Platforms\MySQLPlatform;
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
use Shlinkio\Shlink\Core\Model\Visitor;
|
|
use Shlinkio\Shlink\Core\Visit\Model\VisitType;
|
|
|
|
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' => VisitType::VALID_SHORT_URL->value,
|
|
]);
|
|
}
|
|
|
|
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() instanceof MySQLPlatform);
|
|
}
|
|
}
|