I get the following error when trying to add a FULLTEXT index to Title, Edition and Author in my MySQL database:
Specified key was too long; max key length is 1000 bytes
Here are the columns:
`Title` varchar(255) NOT NULL,
`Edition` varchar(20) default NULL,
`Authors` varchar(255) default NULL,
None of them are unique.. Even the combination of all 3 is not unique. Primary key on the database is the ISBN.
The reason I'm adding this FULLTEXT index is so people can search for books using a keyword that might include the Title, the Edition, or the Author.