* @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_2($module) { $list_fields = Db::getInstance()->executeS('SHOW FIELDS FROM `' . _DB_PREFIX_ . 'wishlist`'); if (is_array($list_fields)) { $isFieldDefaultExist = false; foreach ($list_fields as $k => $field) { if ($field['Field'] === 'default') { $isFieldDefaultExist = true; } } if (false === $isFieldDefaultExist) { return (bool) Db::getInstance()->execute('ALTER TABLE `' . _DB_PREFIX_ . 'wishlist` ADD COLUMN `is_default` INT( 11 ) NOT NULL DEFAULT "0"'); } } return true; }