wallabag/migrations/Version20161214094403.php

31 lines
867 B
PHP
Raw Permalink Normal View History

<?php
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
2024-02-19 00:30:12 +00:00
use Wallabag\Doctrine\WallabagMigration;
/**
2017-04-13 10:57:31 +00:00
* Added index on wallabag_entry.uid.
*/
class Version20161214094403 extends WallabagMigration
{
2016-12-29 09:09:44 +00:00
private $indexName = 'IDX_entry_uid';
public function up(Schema $schema): void
{
$entryTable = $schema->getTable($this->getTable('entry'));
$this->skipIf($entryTable->hasIndex($this->indexName), 'It seems that you already played this migration.');
2016-12-29 09:09:44 +00:00
$entryTable->addIndex(['uid'], $this->indexName);
}
public function down(Schema $schema): void
{
$entryTable = $schema->getTable($this->getTable('entry'));
$this->skipIf(false === $entryTable->hasIndex($this->indexName), 'It seems that you already played this migration.');
$entryTable->dropIndex($this->indexName);
}
}