Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
ALTER TABLE table_name DROP ID;
OPTIMIZE TABLE table_name;
ALTER TABLE table_name ADD ID BIGINT( 20 ) NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST ;