* @copyright 2014-2023 Presta-Mod.pl * @license Licecnja na jedną domenę * Presta-Mod.pl Rafał Zontek */ if (!defined('_PS_VERSION_')) { exit; } function upgrade_module_2_5_0($module) { $sql = 'ALTER TABLE `'._DB_PREFIX_.'pminpostpaczkomatylist` ADD COLUMN `id_pack` char(255) NULL DEFAULT NULL'; Db::getInstance()->execute($sql); $module->unregisterHook('adminOrder'); $module->registerAdminHook(); return true; }