* @copyright 2007-2017 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ if (!defined('_PS_VERSION_')) { exit; } function upgrade_module_1_4_3() { // Delete current index Db::getInstance()->Execute(' ALTER TABLE '._DB_PREFIX_.'delivery_date_exceptions DROP INDEX DeliveryDateException; '); Db::getInstance()->Execute(' ALTER TABLE '._DB_PREFIX_.'delivery_date_exceptions ADD UNIQUE `DeliveryDateException` ( `id_carrier`, `id_zone`, `date`); '); return true; }