I have a table with field name image_field. I want to change it to simply image.
I tried
alter table permit change image_field image varchar(200);
I get error
ERROR 1067 (42000): Invalid default value other field
I tried alter ignore table ... and didn't work. Help me ignore the error.