|
Paul/Aaron,
The field here on headername with a varchar(100)
should be text to prevent something bigger?
Like the dbmail_headervalue that has a text
type
CREATE TABLE dbmail_headername
(
id
BIGINT NOT NULL AUTO_INCREMENT,
headername VARCHAR(100) NOT NULL DEFAULT
'', PRIMARY KEY
(id), UNIQUE (headername) )
ENGINE=InnoDB ;
|