This is what I tried but it fails:
alter table goods add column `id` int(10) unsigned primary AUTO_INCREMENT;
Does anyone have a tip?
Remove quotes to work properly...
alter table goods add column id int(10) unsigned primary KEY AUTO_INCREMENT;