I'm using phpmyadmin and when I attempt to alter my table's column description from varchar(1000) to varchar(2000) I get an error:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '=latin1 COLLATE latin1_swedish_ci NOT NULL' at line 1
The automatically generated SQL from phpmyadmin:
ALTER TABLE `showcase`
CHANGE `description` `description` VARCHAR(2000) CHARSET=latin1
COLLATE latin1_swedish_ci NOT NULL;