* @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 7744 $ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ function alter_productcomments_guest_index() { Configuration::loadConfiguration(); $productcomments = Module::getInstanceByName('productcomments'); if (!$productcomments->id) return; DB::getInstance()->Execute(' ALTER TABLE `'._DB_PREFIX_.'product_comment` DROP INDEX `id_guest`, ADD INDEX `id_guest` USING BTREE(`id_guest`);'); }