This repository was archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #192 from Flagbit/develop
Develop
- Loading branch information
Showing
7 changed files
with
78 additions
and
21 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
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
35 changes: 35 additions & 0 deletions
35
...ode/community/FACTFinder/Tracking/sql/factfinder_tracking_setup/upgrade-4.1.11-4.1.12.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,35 @@ | ||
<?php | ||
/** | ||
* FACTFinder_Tracking | ||
* | ||
* @category Mage | ||
* @package FACTFinder_Tracking | ||
* @author Flagbit Magento Team <magento@flagbit.de> | ||
* @copyright Copyright (c) 2016 Flagbit GmbH & Co. KG | ||
* @license https://opensource.org/licenses/MIT The MIT License (MIT) | ||
* @link http://www.flagbit.de | ||
* | ||
*/ | ||
/** | ||
* Install script | ||
* | ||
* Adds column for parent ID | ||
* | ||
*/ | ||
|
||
$installer = $this; | ||
$installer->startSetup(); | ||
|
||
$table = $installer->getConnection() | ||
->addColumn( | ||
$installer->getTable('factfinder_tracking/queue'), | ||
'parent_product_id', | ||
array( | ||
'type' => Varien_Db_Ddl_Table::TYPE_TEXT, | ||
'length' => 255, | ||
'nullable' => true, | ||
'default' => null, | ||
'comment' => 'Parent Product ID', | ||
) | ||
); | ||
$installer->endSetup(); |