I'm working on a small Laravel app to learn the framework. I'm no more than 2 weeks into Laravel and I'm playing around with a meaningless application that I am building for learning purposes only. So if this is normal - please excuse me.
I noticed today, when submitted data from a form into a MySQL database, that the primary ID auto increments by 10, instead of 1. I have never seen this happen before in anything, so my concern is that I've done something wrong, or there is a setting that I don't know about yet.
I've searched for a few hours, but all I've been able to come up with is how to assign a field to auto increment, but nothing on why it's incrementing by so many.
So my row IDs are looking like this:
1 11 21 31 41 etc.. you get the idea.
Edit: I also want to mention that in my schema, I don't have any funny business going on with the increment field. It simple looks like this: $table->increments('id');
Exactly the same as the Laravel default users Schema, but that one seems to increment just fine.