I'm posting just incase anyone had this question recently, as I have.
To change the datatype to accept something larger in Mysql, state the column name twice before implementing (in this case) the new larger datatype:
ALTER TABLE TableName
CHANGE CurrentColumnName CurrentColumnName NewDataType;