* @copyright Since 2013 Ovidiu Cimpean * @license Do not edit, modify or copy this file * * @version Release: 4 */ if (!defined('_PS_VERSION_')) { exit; } function upgrade_module_1_9_4_4($module) { $upgrade = $module->upgrade; // hooks update (no) // configuration update (no) $upgrade->updateConfiguration('FUNC_MAIL_ACTIVE', '0'); // database update (no) $upgrade->addColumn('newsletter_pro_task', 'send_method', "`send_method` ENUM('mail','smtp') NOT NULL DEFAULT 'mail'", 'template'); return $upgrade->success(); }