Skip to content

Commit

Permalink
OM PR 4334
Browse files Browse the repository at this point in the history
  • Loading branch information
fballiano committed Dec 19, 2024
1 parent 3785f9c commit dbe52a3
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/core/Mage/Tax/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<config>
<modules>
<Mage_Tax>
<version>1.6.0.4</version>
<version>1.6.0.5</version>
</Mage_Tax>
</modules>
<global>
Expand Down
35 changes: 35 additions & 0 deletions app/code/core/Mage/Tax/sql/tax_setup/upgrade-1.6.0.4-1.6.0.5.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?php
/**
* OpenMage
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available at https://opensource.org/license/osl-3-0-php
*
* @category Mage
* @package Mage_Tax
* @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com)
* @copyright Copyright (c) 2020-2025 The OpenMage Contributors (https://www.openmage.org)
* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/

/** @var Mage_Tax_Model_Resource_Setup $this */

$this->startSetup();

$taxTable = $this->getTable('tax/sales_order_tax');
$orderTable = $this->getTable('sales/order');

// adds FK_SALES_ORDER_TAX_ORDER back again
$this->getConnection()->addForeignKey(
$this->getFkName($taxTable, 'order_id', $orderTable, 'entity_id'),
$taxTable,
'order_id',
$orderTable,
'entity_id',
Varien_Db_Adapter_Interface::FK_ACTION_CASCADE,
Varien_Db_Adapter_Interface::FK_ACTION_CASCADE,
true
);

$this->endSetup();

0 comments on commit dbe52a3

Please sign in to comment.