As I SET cust_fax in a table in MySQL like this:
SET
cust_fax integer(10) NOT NULL,
and then I insert value like this:
<
Work with:
ALTER TABLE `table` CHANGE `cust_fax` `cust_fax` VARCHAR(60) NULL DEFAULT NULL;