-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add primary key to plugin_cmf_deletions table (#252)
* Add primary key to plugin_cmf_deletions * Add migration * Add migration for 6.9 * disable foreign key checks
- Loading branch information
Showing
3 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
/** | ||
* 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 CustomerManagementFrameworkBundle\Migrations\PimcoreX; | ||
|
||
use Doctrine\DBAL\Schema\Schema; | ||
use Pimcore\Migrations\BundleAwareMigration; | ||
|
||
class Version20220120215900 extends BundleAwareMigration | ||
{ | ||
protected function getBundleName(): string | ||
{ | ||
return 'PimcoreCustomerManagementFrameworkBundle'; | ||
} | ||
|
||
/** | ||
* @param Schema $schema | ||
*/ | ||
public function up(Schema $schema): void | ||
{ | ||
$deletionsTable = $schema->getTable('plugin_cmf_deletions'); | ||
|
||
if (!$deletionsTable->hasPrimaryKey()) { | ||
$this->addSql('SET foreign_key_checks = 0'); | ||
$this->addSql('ALTER TABLE `plugin_cmf_deletions` ADD PRIMARY KEY (`id`, `entityType`, `type`);'); | ||
$this->addSql('SET foreign_key_checks = 1'); | ||
} | ||
} | ||
|
||
/** | ||
* @param Schema $schema | ||
*/ | ||
public function down(Schema $schema): void | ||
{ | ||
$this->addSql('SET foreign_key_checks = 0'); | ||
$this->addSql('ALTER TABLE `plugin_cmf_deletions` DROP INDEX `PRIMARY`;'); | ||
$this->addSql('SET foreign_key_checks = 1'); | ||
} | ||
} |
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,46 @@ | ||
<?php | ||
|
||
/** | ||
* 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 CustomerManagementFrameworkBundle\Migrations; | ||
|
||
use Doctrine\DBAL\Schema\Schema; | ||
use Pimcore\Migrations\Migration\AbstractPimcoreMigration; | ||
|
||
class Version20220120215900 extends AbstractPimcoreMigration | ||
{ | ||
/** | ||
* @param Schema $schema | ||
*/ | ||
public function up(Schema $schema): void | ||
{ | ||
$deletionsTable = $schema->getTable('plugin_cmf_deletions'); | ||
|
||
if (!$deletionsTable->hasPrimaryKey()) { | ||
$this->addSql('SET foreign_key_checks = 0'); | ||
$this->addSql('ALTER TABLE `plugin_cmf_deletions` ADD PRIMARY KEY (`id`, `entityType`, `type`);'); | ||
$this->addSql('SET foreign_key_checks = 1'); | ||
} | ||
} | ||
|
||
/** | ||
* @param Schema $schema | ||
*/ | ||
public function down(Schema $schema): void | ||
{ | ||
$this->addSql('SET foreign_key_checks = 0'); | ||
$this->addSql('ALTER TABLE `plugin_cmf_deletions` DROP INDEX `PRIMARY`;'); | ||
$this->addSql('SET foreign_key_checks = 1'); | ||
} | ||
} |