modify mysql tabel to make id auto increment code example
Example 1: mysql alter column auto increment
ALTER TABLE document MODIFY COLUMN document_id INT auto_increment
Example 2: mysql set id auto increment
ALTER TABLE users AUTO_INCREMENT=1001;