forked from pimcore/pimcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Improvement]: Add
versionCount
index to element and versions table (…
- Loading branch information
Showing
3 changed files
with
69 additions
and
4 deletions.
There are no files selected for viewing
56 changes: 56 additions & 0 deletions
56
bundles/CoreBundle/src/Migrations/Version20241021111028.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace Pimcore\Bundle\CoreBundle\Migrations; | ||
|
||
use Doctrine\DBAL\Schema\Schema; | ||
use Doctrine\Migrations\AbstractMigration; | ||
|
||
final class Version20241021111028 extends AbstractMigration | ||
{ | ||
protected array $tables = [ | ||
'assets', | ||
'documents', | ||
'objects', | ||
'versions', | ||
]; | ||
|
||
public function getDescription(): string | ||
{ | ||
return 'Add versionCount index to elements and versions table'; | ||
} | ||
|
||
public function up(Schema $schema): void | ||
{ | ||
foreach ($this->tables as $table) { | ||
$dbTable = $schema->getTable($table); | ||
if (!$dbTable->hasIndex('versionCount')) { | ||
$dbTable->addIndex(['versionCount'], 'versionCount'); | ||
} | ||
} | ||
} | ||
|
||
public function down(Schema $schema): void | ||
{ | ||
foreach ($this->tables as $table) { | ||
$dbTable = $schema->getTable($table); | ||
if ($dbTable->hasIndex('versionCount')) { | ||
$dbTable->dropIndex('versionCount'); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters