2021-02-02 22:21:48 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace ShlinkMigrations;
|
|
|
|
|
2022-01-10 14:05:01 +03:00
|
|
|
use Doctrine\DBAL\Platforms\MySQLPlatform;
|
2021-02-02 22:21:48 +03:00
|
|
|
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,
|
|
|
|
]);
|
2021-02-03 21:22:47 +03:00
|
|
|
$shortUrls->addColumn('title_was_auto_resolved', Types::BOOLEAN, [
|
|
|
|
'default' => false,
|
|
|
|
]);
|
2021-02-02 22:21:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function down(Schema $schema): void
|
|
|
|
{
|
|
|
|
$shortUrls = $schema->getTable('short_urls');
|
|
|
|
$this->skipIf(! $shortUrls->hasColumn(self::TITLE));
|
|
|
|
$shortUrls->dropColumn(self::TITLE);
|
2021-02-03 21:22:47 +03:00
|
|
|
$shortUrls->dropColumn('title_was_auto_resolved');
|
|
|
|
}
|
2021-10-23 17:02:29 +03:00
|
|
|
|
|
|
|
public function isTransactional(): bool
|
|
|
|
{
|
2022-01-10 14:05:01 +03:00
|
|
|
return ! ($this->connection->getDatabasePlatform() instanceof MySQLPlatform);
|
2021-10-23 17:02:29 +03:00
|
|
|
}
|
2021-02-02 22:21:48 +03:00
|
|
|
}
|