I was finally able to get MySQL-Front to do this for me via an SQL command. (It kept refusing to do this until I rebooted the computer.)
The syntax it used, with the exact table and column name was :
ALTER TABLE 'agency_contacts' CHANGE 'RecNum' 'CTRecNum' int (3);
I had 'RecNum' defined as the primary key for the table as an autonum. But I also had other "RecNums" defined in other tables, and was trying to make the DB less confusing, hence the name change.
Again, thanks for your help.