how to add auto increment column in mysql 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;
ALTER TABLE document MODIFY COLUMN document_id INT auto_increment
ALTER TABLE users AUTO_INCREMENT=1001;