I am using Django v1.7 and I need to set the initial auto increment value to something like 1000000, I couldn\'t find any Django docs that shows there is a feature like this
Sweet, found this documentation
Just add this in the operations array
operations = [ migrations.CreateModel(...), # mysql specific migrations.RunSQL('alter table tablename auto_increment=1000000'), ]