In the mailout.install file in function: mailout_install() there is a missing line near the bottom of the function. This is the correct version (from the dev release)

db_query("CREATE TABLE {mailout_list_addresses} (
id INT(16) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
list_id INT(16) NOT NULL ,
email TINYTEXT NOT NULL,
name TINYTEXT NOT NULL,
html TINYINT(1) NOT NULL default '0',
data TEXT NOT NULL
) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
break;

It to have the following line added:
data TEXT NOT NULL

Comments

sime’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.