I want auto_increment to increment by 1 each time I insert a row. It doesn't matter if I later delete a row in the middle, I always want it to increment by 1.
The problem is that MySQL keeps incrementing by 10. It goes from 1 to 11, to etc.
I've adjusted auto_increment, auto_increment_increment, auto_increment_offset, with no avail by setting them to 1 or 0 where appropriate.
EDIT:
These were the actions:
SET @@auto_increment_offset=1
ALTER TABLE posts AUTO_INCREMENT = 0
or 1
SET @@auto_increment_increment=1;
Also, i am using the MYISAM engine for this particular table, though it appears to be happening to another table without that engine. The reason i am using MYISAM is because it allows for auto-inc on multiple indexes.
And i can't restart my db because it's running on a shared server on heroku. I also don't understand how this is a duplicate if it hasn't been resolved elsewhere.