mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 17:06:41 -06:00
43 lines
1.1 KiB
PHP
43 lines
1.1 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 Version20210202181026 extends AbstractMigration
|
|
{
|
|
private const TITLE = 'title';
|
|
|
|
public function up(Schema $schema): void
|
|
{
|
|
$shortUrls = $schema->getTable('short_urls');
|
|
$this->skipIf($shortUrls->hasColumn(self::TITLE));
|
|
|
|
$shortUrls->addColumn(self::TITLE, Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 512,
|
|
]);
|
|
$shortUrls->addColumn('title_was_auto_resolved', Types::BOOLEAN, [
|
|
'default' => false,
|
|
]);
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$shortUrls = $schema->getTable('short_urls');
|
|
$this->skipIf(! $shortUrls->hasColumn(self::TITLE));
|
|
$shortUrls->dropColumn(self::TITLE);
|
|
$shortUrls->dropColumn('title_was_auto_resolved');
|
|
}
|
|
|
|
public function isTransactional(): bool
|
|
{
|
|
return ! ($this->connection->getDatabasePlatform() instanceof MySQLPlatform);
|
|
}
|
|
}
|