mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 17:08:58 +03:00
28 lines
688 B
PHP
28 lines
688 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ShlinkMigrations;
|
||
|
|
||
|
use Doctrine\DBAL\Schema\Schema;
|
||
|
use Doctrine\Migrations\AbstractMigration;
|
||
|
|
||
|
final class Version20200503170404 extends AbstractMigration
|
||
|
{
|
||
|
private const INDEX_NAME = 'IDX_visits_date';
|
||
|
|
||
|
public function up(Schema $schema): void
|
||
|
{
|
||
|
$visits = $schema->getTable('visits');
|
||
|
$this->skipIf($visits->hasIndex(self::INDEX_NAME));
|
||
|
$visits->addIndex(['date'], self::INDEX_NAME);
|
||
|
}
|
||
|
|
||
|
public function down(Schema $schema): void
|
||
|
{
|
||
|
$visits = $schema->getTable('visits');
|
||
|
$this->skipIf(! $visits->hasIndex(self::INDEX_NAME));
|
||
|
$visits->dropIndex(self::INDEX_NAME);
|
||
|
}
|
||
|
}
|