Hi
If your using MySQL 5.0.2, you can just change the VCHAR length from 250 to 500 and MySQL will convert to TEXT! If your using a earlier version (3*/4*) then just change the column type to TEXT!
example...
Code:
ALTER TABLE \PREFIX/forum CHANGE description description TEXT NOT NULL;
Where as \PREFIX/, will be replaced by the table prefix you are using, if your not using a table prefix, then just remove \PREFIX/
Sonia