I have a strange problem with mysql.
I am trying to alter a table\'s column which is a primary key and has an auto_increment constraint defined on it. This is also a
You don't need to specify PRIMARY KEY in the MODIFY statement:
PRIMARY KEY
ALTER TABLE Parent MODIFY Identifier smallint(10) AUTO_INCREMENT;