* @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_3_2_8($module) { $upgrade = $module->upgrade; $upgrade->createTable('newsletter_pro_email_exclusion', " `id_newsletter_pro_email_exclusion` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `email` VARCHAR(255) NOT NULL DEFAULT '0', PRIMARY KEY (`id_newsletter_pro_email_exclusion`), UNIQUE INDEX `email` (`email`) "); return $upgrade->success(); }