You'll have to run the following SQL query against your DB:
ALTER TABLE `qa_categories`
CHANGE COLUMN `content` `content` VARCHAR(2000) NOT NULL DEFAULT '';
I'm assuming your MySQL table prefix is "qa". Also note you're modifying the core and that is not advised.