mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-27 08:18:24 +03:00
47 lines
1.4 KiB
PHP
47 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\Schema\Table;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
final class Version20210720143824 extends AbstractMigration
|
|
{
|
|
public function up(Schema $schema): void
|
|
{
|
|
$domainsTable = $schema->getTable('domains');
|
|
$this->skipIf($domainsTable->hasColumn('base_url_redirect'));
|
|
|
|
$this->createRedirectColumn($domainsTable, 'base_url_redirect');
|
|
$this->createRedirectColumn($domainsTable, 'regular_not_found_redirect');
|
|
$this->createRedirectColumn($domainsTable, 'invalid_short_url_redirect');
|
|
}
|
|
|
|
private function createRedirectColumn(Table $table, string $columnName): void
|
|
{
|
|
$table->addColumn($columnName, Types::STRING, [
|
|
'notnull' => false,
|
|
'default' => null,
|
|
]);
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$domainsTable = $schema->getTable('domains');
|
|
$this->skipIf(! $domainsTable->hasColumn('base_url_redirect'));
|
|
|
|
$domainsTable->dropColumn('base_url_redirect');
|
|
$domainsTable->dropColumn('regular_not_found_redirect');
|
|
$domainsTable->dropColumn('invalid_short_url_redirect');
|
|
}
|
|
|
|
public function isTransactional(): bool
|
|
{
|
|
return ! ($this->connection->getDatabasePlatform() instanceof MySQLPlatform);
|
|
}
|
|
}
|