drop table if exists users; create table users ( id bigint auto_increment, name varchar(255), constraint users_pk primary key (id) ) ENGINE=InnoDB AUTO_INCREMENT=10000;
alter table users AUTO_INCREMENT=123456;