2016-11-04 06:56:04 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Application\Migrations;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2018-06-14 11:43:09 +00:00
|
|
|
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
|
2016-11-04 06:56:04 +00:00
|
|
|
|
2017-01-13 13:51:37 +00:00
|
|
|
/**
|
2017-04-13 10:57:31 +00:00
|
|
|
* Added created_at index on entry table.
|
2017-01-13 13:51:37 +00:00
|
|
|
*/
|
2018-06-14 11:43:09 +00:00
|
|
|
class Version20161104073720 extends WallabagMigration
|
2016-11-04 06:56:04 +00:00
|
|
|
{
|
2016-11-30 11:29:55 +00:00
|
|
|
private $indexName = 'IDX_entry_created_at';
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
public function up(Schema $schema): void
|
2016-11-04 06:56:04 +00:00
|
|
|
{
|
2016-11-26 14:40:42 +00:00
|
|
|
$entryTable = $schema->getTable($this->getTable('entry'));
|
2016-11-30 11:29:55 +00:00
|
|
|
$this->skipIf($entryTable->hasIndex($this->indexName), 'It seems that you already played this migration.');
|
|
|
|
|
|
|
|
$entryTable->addIndex(['created_at'], $this->indexName);
|
2016-11-04 06:56:04 +00:00
|
|
|
}
|
|
|
|
|
2022-12-14 13:36:29 +00:00
|
|
|
public function down(Schema $schema): void
|
2016-11-04 06:56:04 +00:00
|
|
|
{
|
2016-11-30 11:29:55 +00:00
|
|
|
$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);
|
2016-11-04 06:56:04 +00:00
|
|
|
}
|
|
|
|
}
|