how to make auto increment column in Mysql server 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;