* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ if (!defined('_PS_VERSION_')) { exit; } /** * @param BlockWishList $module * * @return bool */ function upgrade_module_1_1_3($module) { $list_fields = Db::getInstance()->executeS('SHOW FIELDS FROM `' . _DB_PREFIX_ . 'wishlist`'); if (is_array($list_fields)) { foreach ($list_fields as $field) { if ($field['Field'] === 'is_default') { return (bool) Db::getInstance()->execute('ALTER TABLE `' . _DB_PREFIX_ . 'wishlist` CHANGE `is_default` `default` INT( 11 ) NOT NULL DEFAULT "0"'); } } } return true; }