I am running dynamic queries based on adding removing fields to categories. Here is an example query:
ALTER TABLE se_classifiedvalues
ADD classifiedvalue_402 varchar(250) NOT NULL default ''
MYSQL isn't complaining about syntax but returns false when I var dump the query. When I threw that query into phpMyAdmin and tried to execute the sql it threw this:
#1118 - Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. You have to change some columns to TEXT or BLOBs
any one have any idea what I can do to fix this?
thanks