* @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ function ps1605_change_index() { $index = Db::getInstance()->executeS('SHOW INDEX FROM `'._DB_PREFIX_.'order_detail_tax` WHERE Key_name = "id_tax"'); if (is_array($index) && count($index)) Db::getInstance()->execute('ALTER IGNORE TABLE `'._DB_PREFIX_.'order_detail_tax` DROP INDEX `id_tax`'); Db::getInstance()->execute('ALTER IGNORE TABLE `'._DB_PREFIX_.'order_detail_tax` ADD INDEX (`id_tax`)'); }