mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-17 21:00:41 -06:00
40 lines
1.0 KiB
PHP
40 lines
1.0 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;
|
|
|
|
final class Version20241124112257 extends AbstractMigration
|
|
{
|
|
private const string COLUMN_NAME = 'redirect_url';
|
|
|
|
public function up(Schema $schema): void
|
|
{
|
|
$visits = $schema->getTable('visits');
|
|
$this->skipIf($visits->hasColumn(self::COLUMN_NAME));
|
|
|
|
$visits->addColumn(self::COLUMN_NAME, Types::STRING, [
|
|
'length' => 2048,
|
|
'notnull' => false,
|
|
'default' => null,
|
|
]);
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$visits = $schema->getTable('visits');
|
|
$this->skipIf(! $visits->hasColumn(self::COLUMN_NAME));
|
|
$visits->dropColumn(self::COLUMN_NAME);
|
|
}
|
|
|
|
public function isTransactional(): bool
|
|
{
|
|
return ! ($this->connection->getDatabasePlatform() instanceof MySQLPlatform);
|
|
}
|
|
}
|