Insert/Update, Ver 3.64, on a table with the following CREATE TABLE, produces a pull-down with three lines (NULL),, when attempting to modify the 'style' column:
CREATE TABLE catalog (
cust_id char(8) DEFAULT '' NOT NULL ,
cat_id char(8) DEFAULT '' NOT NULL ,
description char(30) DEFAULT '' NOT NULL ,
status tinyint(1) DEFAULT '0' NOT NULL ,
which_db char(8) DEFAULT '' NOT NULL ,
style enum('','company_store','imprints','forms','supplies') DEFAULT '' NOT NULL ,
sortby char(4) DEFAULT '' NOT NULL ,
file_attach enum('Y','N') DEFAULT 'N' NOT NULL ,
PRIMARY KEY (cust_id,cat_id)
);
It seems the problem is caused by the initial '' which is unnecessary, of course, but stilll …
I would test with the new beta, but can't find it. Is that generally available?
Richard