First, I create column img_ids, which I want to increment later on, with initial value 393.
Next step, I do the following:
Alter table img_ids_for_media modify image_id int(11) AUTO_INCREMENT PRIMARY KEY
This gives me simple incrementation 1,2,3...
After this I try:
Alter table img_ids_for_media AUTO_INCREMENT = 393
This query passes, but does not do anything at all. I still have 1,2,3, not
393,393,394
What can I do with this?