mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 00:38:46 +03:00
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkMigrations;
|
|
|
|
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');
|
|
}
|
|
|
|
/**
|
|
* @fixme Workaround for https://github.com/doctrine/migrations/issues/1104
|
|
*/
|
|
public function isTransactional(): bool
|
|
{
|
|
return false;
|
|
}
|
|
}
|