I create vbulletin skins. I had a bunch of test skins which I deleted. Here's what I need help with. I just added a new skin and the ID assigned to it was 28, but the skin is actually 12. All those skins in between are now gone. So now I have to go in phpMyAdmin and change the ID myself. I don't want to always have to do this. Is there a query I can run for the style table to fix it so it's back to normal? So it assumes 12 was the very last skin added and give the next installed skin ID 13, not ID 29?
Change the auto increment value for the style table like so (SQL query): ALTER TABLE style AUTO_INCREMENT = 13 Code (sql):