Puoi usare SQL stesso per farlo. ALTER TABLE <table_name> AUTO_INCREMENT=100000;
.
Oppure
Fai come qui
E usa una dichiarazione non preparata;
$statement = "ALTER TABLE MY_TABLE AUTO_INCREMENT = 100000;";
DB::unprepared($statement);
o
DB::update("ALTER TABLE {your table name} AUTO_INCREMENT = 100000;");
Che potrebbe quindi essere inserito all'interno della migrazione che crea la tabella.