-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
41 additions
and
5 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
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
19 changes: 19 additions & 0 deletions
19
app/code/community/Ess/M2ePro/sql/Update/y23_m10/EnableEbayShippingRate.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,19 @@ | ||
<?php | ||
|
||
// @codingStandardsIgnoreFile | ||
|
||
class Ess_M2ePro_Sql_Update_y23_m10_EnableEbayShippingRate extends | ||
Ess_M2ePro_Model_Upgrade_Feature_AbstractFeature | ||
{ | ||
public function execute() | ||
{ | ||
$this->_installer->getConnection()->update( | ||
$this->_installer->getFullTableName('m2epro_ebay_marketplace'), | ||
array( | ||
'is_local_shipping_rate_table' => 1, | ||
'is_international_shipping_rate_table' => 1, | ||
), | ||
array('marketplace_id IN (?)' => array(7, 13)) | ||
); | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
app/code/community/Ess/M2ePro/sql/Upgrade/v6_48_0__v6_49_0/Config.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,17 @@ | ||
<?php | ||
|
||
/** | ||
* @author M2E Pro Developers Team | ||
* @copyright M2E LTD | ||
* @license Commercial use is forbidden | ||
*/ | ||
|
||
class Ess_M2ePro_Sql_Upgrade_v6_48_0__v6_49_0_Config extends Ess_M2ePro_Model_Upgrade_Feature_AbstractConfig | ||
{ | ||
public function getFeaturesList() | ||
{ | ||
return array( | ||
'@y23_m10/EnableEbayShippingRate', | ||
); | ||
} | ||
} |
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