created: 2019-03-15T08:33:58.000Z
MySQL、 auto incrementの確認と変更
確認
show table status where Name = '{{ テーブル名 }}'\G
変更
ALTER TABLE '{{ テーブル名 }}' AUTO_INCREMENT = 1000000;
created: 2019-03-15T08:33:58.000Z
show table status where Name = '{{ テーブル名 }}'\G
ALTER TABLE '{{ テーブル名 }}' AUTO_INCREMENT = 1000000;