This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FACTFINDER-162] Fix checkout tracking for different configurations #125
- Loading branch information
Showing
5 changed files
with
94 additions
and
23 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
File renamed without changes.
33 changes: 33 additions & 0 deletions
33
.../code/community/FACTFinder/Tracking/sql/factfinder_tracking_setup/upgrade-1.0.0-4.1.2.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,33 @@ | ||
<?php | ||
/** | ||
* FACTFinder_Tracking | ||
* | ||
* @category Mage | ||
* @package FACTFinder_Tracking | ||
* @author Flagbit Magento Team <[email protected]> | ||
* @copyright Copyright (c) 2015 Flagbit GmbH & Co. KG | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
* @link http://www.flagbit.de | ||
* | ||
*/ | ||
/** | ||
* Install script | ||
* | ||
* Install script for Tracking queue. Orders are sent to FACT-Finder asynchronously by cronjobs. | ||
*/ | ||
|
||
$installer = $this; | ||
$installer->startSetup(); | ||
|
||
$table = $installer->getConnection() | ||
->addColumn( | ||
$installer->getTable('factfinder_tracking/queue'), | ||
'store_id', | ||
array( | ||
'type' => Varien_Db_Ddl_Table::TYPE_INTEGER, | ||
'nullable' => true, | ||
'default' => null, | ||
'comment' => 'Store ID' | ||
) | ||
); | ||
$installer->endSetup(); |