* @copyright 2007-2019 PrestaShop SA * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) * International Registered Trademark & Property of PrestaShop SA */ if (!defined('_PS_VERSION_')) { exit; } function upgrade_module_1_0_4(StFacetedsearch $module) { $result = true; $field = Db::getInstance()->executeS('Describe `'._DB_PREFIX_.'st_search_facet_item` `auto_sort`'); if(!is_array($field) || !count($field)) if (!Db::getInstance()->Execute('ALTER TABLE `'._DB_PREFIX_.'st_search_facet_item` ADD `auto_sort` tinyint(1) unsigned NOT NULL DEFAULT 1')) $result &= false; return $result; }