You can create an auto increment column any time - if you've got any primary keys you'll have to drop them first, then you can use alter table to add a new column and make it auto_increment not null primary key, or even modify an existing column if it hasn't got any duplicates with
alter table killthis modify stockid int unsigned auto_increment primary key not null;