mirror of
				https://github.com/shlinkio/shlink.git
				synced 2025-02-25 18:45:27 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1023 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1023 B
		
	
	
	
		
			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 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);
 | 
						|
    }
 | 
						|
}
 |