00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 $installer = $this;
00028
00029 $installer->startSetup();
00030
00031 $installer->getConnection()->addKey(
00032 $installer->getTable('catalog_product_super_attribute_label'),
00033 'IDX_CATALOG_PRODUCT_SUPER_ATTRIBUTE_STORE_PSAI_SI',
00034 array('product_super_attribute_id', 'store_id'));
00035
00036 $installer->getConnection()->addKey(
00037 $installer->getTable('catalog_product_option_price'),
00038 'IDX_CATALOG_PRODUCT_OPTION_PRICE_SI_OI',
00039 array('store_id', 'option_id'));
00040
00041 $installer->getConnection()->addKey(
00042 $installer->getTable('catalog_product_option_title'),
00043 'IDX_CATALOG_PRODUCT_OPTION_TITLE_SI_OI',
00044 array('store_id', 'option_id'));
00045
00046 $installer->getConnection()->addKey(
00047 $installer->getTable('catalog_product_option_type_price'),
00048 'IDX_CATALOG_PRODUCT_OPTION_TYPE_PRICE_SI_OTI',
00049 array('store_id', 'option_type_id'));
00050
00051 $installer->getConnection()->addKey(
00052 $installer->getTable('catalog_product_option_type_title'),
00053 'IDX_CATALOG_PRODUCT_OPTION_TYPE_TITLE_SI_OTI',
00054 array('store_id', 'option_type_id'));
00055
00056 $installer->endSetup();