Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
354 views
in Q2A Core by
Category description are limited in 800 characters. How to increase the limit to 2000?

1 Answer

+1 vote
by
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.
...