ALTER TABLE abform CHANGE <auto_inc_field_name> <auto_inc_field_name> <data_type>(<size>) NOT NULL;
For example, if u have a field called id which is of type int(10) and auto increment, you can run this code to remove the auto increment from the id field.
ALTER TABLE abform CHANGE id id int(10) NOT NULL;
This should solve your problem!