In MySQL 5, a CHAR/VARCHAR field can be up to 65535 characters long. Before that, CHAR/VARCHAR fields are limited to 255 characters, so you would have to use a TEXT field, which allows up to 65536 characters (MEDIUMTEXT and LONGTEXT have higher limits - 2^24 and 2^32 respectively).