try it
$this->db->query("ALTER TABLE table_name AUTO_INCREMENT 1");
change the value after where you want to start increasing the value automatically with this AUTO_INCREMENT
$this->db->query("ALTER TABLE table_name AUTO_INCREMENT 12");
Perform an operation on the DDL table The data definition language in which you execute queries in the database, not in the data.
source
share