Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Birch committed Dec 12, 2016
2 parents aca1352 + 9e1356e commit 348d6e5
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
$connection->addIndex(
$installer->getTable('sales/order'),
$installer->getIdxName(
'realtimedespatch/rtd_imports',
'sales/order',
array('is_virtual', 'exported_at', 'is_exported', 'updated_at', 'status'),
Varien_Db_Adapter_Interface::INDEX_TYPE_INDEX
),
Expand All @@ -29,7 +29,7 @@
$connection->addIndex(
$installer->getTable('realtimedespatch/import_line'),
$installer->getIdxName(
'realtimedespatch/rtd_imports',
'realtimedespatch/import_line',
array('sequence_id'),
Varien_Db_Adapter_Interface::INDEX_TYPE_INDEX
),
Expand All @@ -40,7 +40,7 @@
$connection->addIndex(
$installer->getTable('realtimedespatch/import_line'),
$installer->getIdxName(
'realtimedespatch/rtd_imports',
'realtimedespatch/import_line',
array('reference'),
Varien_Db_Adapter_Interface::INDEX_TYPE_INDEX
),
Expand All @@ -51,7 +51,7 @@
$connection->addIndex(
$installer->getTable('realtimedespatch/import_line'),
$installer->getIdxName(
'realtimedespatch/rtd_imports',
'realtimedespatch/import_line',
array('reference', 'processed'),
Varien_Db_Adapter_Interface::INDEX_TYPE_INDEX
),
Expand All @@ -62,10 +62,10 @@
$connection->addIndex(
$installer->getTable('realtimedespatch/import_line'),
$installer->getIdxName(
'realtimedespatch/rtd_imports',
array('reference', 'processed', 'sequenced_id'),
'realtimedespatch/import_line',
array('reference', 'processed', 'sequence_id'),
Varien_Db_Adapter_Interface::INDEX_TYPE_INDEX
),
array('reference', 'processed', 'sequenced_id'),
array('reference', 'processed', 'sequence_id'),
Varien_Db_Adapter_Interface::INDEX_TYPE_INDEX
);

0 comments on commit 348d6e5

Please sign in to comment.