* @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_3_1($module) { $upgrade = $module->upgrade; // hooks update (no) // configuration update (no) // database update (no) $upgrade->createTable('newsletter_pro_tpl_history', " `id_newsletter_pro_tpl_history` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `template` LONGTEXT NULL, `active` INT(1) NULL DEFAULT '1', PRIMARY KEY (`id_newsletter_pro_tpl_history`) "); return $upgrade->success(); }