mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-25 05:58:23 +03:00
33 lines
794 B
PHP
33 lines
794 B
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,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
public function down(Schema $schema): void
|
||
|
{
|
||
|
$shortUrls = $schema->getTable('short_urls');
|
||
|
$this->skipIf(! $shortUrls->hasColumn(self::TITLE));
|
||
|
$shortUrls->dropColumn(self::TITLE);
|
||
|
}
|
||
|
}
|