here is the create table
CREATE TABLE `newAuth` (
`ID` INT NOT NULL AUTO_INCREMENT ,
`userID` INT NOT NULL ,
`auth` TEXT( 65535 ) ,
PRIMARY KEY ( `ID` ) ,
INDEX ( `userID` , `auth` ) ,
FULLTEXT (
`auth`
)
)
here is the error
#1064 - You have an error in your SQL syntax near '(65535 ), PRIMARY KEY (ID), INDEX (userID, auth), FULLTEXT (auth))' at line 1
now this came about because I was getting an error trying to alter a table with a field that was varchar to a textfield and I was getting this error
#1170 - BLOB column 'auth' used in key specification without a key length
even though in the length box on phpMyAdmin I was giving it the same length which is the max length based on the mysql documentation
any help